dev-jaanvi #1
Loading…
Reference in a new issue
No description provided.
Delete branch "dev-jaanvi"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +6,4 @@
// Animation for the car icon
const pulse = keyframes`
0% {
transform: scale(1);
put it in the css file
@ -0,0 +34,4 @@
"Sending email to:",
selectedStudents.map((s) => s.email)
);
console.log("Subject:", subject);
Remove all console logs
@ -0,0 +22,4 @@
const StyledTableCell = styled(TableCell)(({ theme }) => ({
[`&.${tableCellClasses.head}`]: {
backgroundColor: "#000000",
color: "#D0E1E9",
Don't use the hardcoded color codes
@ -0,0 +76,4 @@
state.students = state.students.filter(
(student) => student.id !== action.payload
);
toast.success("Student removed from local backlog.");
Its better to keep the messages in separate constant file for use.
@ -0,0 +12,4 @@
React.useEffect(() => {
if (isAuthenticated) {
dispatch(checkUserAuth());
If its authenticated then why again checking checkUserAuth.
@ -0,0 +12,4 @@
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
add app specific meta description.
@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
Add app-specific values for the short_name and name fields.
@ -0,0 +21,4 @@
// Styled Components
const StyledTableCell = styled(TableCell)(({ theme }) => ({
[`&.${tableCellClasses.head}`]: {
backgroundColor: "#000000",
Color codes are already defined in the theme; use theme values instead of hardcoded colors.
Theme file path src/shared-theme/AppTheme.tsx
Checkout
From your project repository, check out a new branch and test the changes.Merge
Merge the changes and update on Forgejo.