From 9215e23aae929a9ac5989c04ae6658300a8df2c0 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Sun, 21 Dec 2025 17:11:19 +0530 Subject: [PATCH 1/3] chore: -rm logout notif Comment out notification for successful logout. --- src/components/dashboard/NavBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dashboard/NavBar.tsx b/src/components/dashboard/NavBar.tsx index 4240d8af..f9b4bc90 100644 --- a/src/components/dashboard/NavBar.tsx +++ b/src/components/dashboard/NavBar.tsx @@ -113,7 +113,7 @@ export const NavBar: React.FC = ({ if (data.ok) { dispatch({ type: "LOGOUT" }); window.localStorage.removeItem("user"); - notify('success', t('navbar.notifications.success.logout')); + // notify('success', t('navbar.notifications.success.logout')); navigate("/login"); } } catch (error: any) { From b561e9e6a515b68d03a947ae0c88064c85dac0ea Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Sun, 21 Dec 2025 17:12:06 +0530 Subject: [PATCH 2/3] fix: pass bgcolor --- src/components/ui/AlertSnackbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/AlertSnackbar.tsx b/src/components/ui/AlertSnackbar.tsx index 3cf5c554..a9612963 100644 --- a/src/components/ui/AlertSnackbar.tsx +++ b/src/components/ui/AlertSnackbar.tsx @@ -32,7 +32,7 @@ export const AlertSnackbar = ({ severity, message, isOpen }: AlertSnackbarProps) return ( - + {message} From 12c36cfcb457c1f074d9f8d0f99c2f469ca8eb01 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Sun, 21 Dec 2025 17:12:33 +0530 Subject: [PATCH 3/3] feat: set variant outlined --- src/components/ui/AlertSnackbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/AlertSnackbar.tsx b/src/components/ui/AlertSnackbar.tsx index a9612963..e59e637b 100644 --- a/src/components/ui/AlertSnackbar.tsx +++ b/src/components/ui/AlertSnackbar.tsx @@ -32,7 +32,7 @@ export const AlertSnackbar = ({ severity, message, isOpen }: AlertSnackbarProps) return ( - + {message}