Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
240 changes: 233 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"@testing-library/user-event": "^13.5.0",
"@uiball/loaders": "^1.3.0",
"axios": "^1.4.0",
"dotenv": "^16.4.5",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
Expand Down
3 changes: 3 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ const App = () => {


dispatch(isTokenValid());
// <------Fixed the 39th bug ---->

dispatch(getProducts());
}, [dispatch]);

return (
Expand Down
4 changes: 3 additions & 1 deletion src/components/AlertDialogSlide.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import React from "react";
import { Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Slide } from "@mui/material";
import { GreenButton, RedButton } from "../utils/buttonStyles";

const AlertDialogSlide = ({ dialog, showDialog, setShowDialog }) => {
//<-----14TH BUG FIXED ---->
// receiving taskHandeler as prop
const AlertDialogSlide = ({ dialog, showDialog, setShowDialog,taskHandler }) => {
const handleClose = () => {
setShowDialog(false);
};
Expand Down
5 changes: 4 additions & 1 deletion src/components/Popup.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import * as React from 'react';
import { useDispatch } from 'react-redux';
import { underControl } from '../redux/userHandle';

//<-------13TH BUG FIXED -------->
/// FIXED THE IMPORT STATEMENT OF UNDERCONTROL
import { underControl } from '../redux/userSlice';
import MuiAlert from '@mui/material/Alert';
import { Snackbar } from '@mui/material';

Expand Down
Loading