chore: -rm logout notif

Comment out notification for successful logout.
This commit is contained in:
Karishma Shukla
2025-12-21 17:11:19 +05:30
committed by GitHub
parent 33bfbb6881
commit 9215e23aae

View File

@@ -113,7 +113,7 @@ export const NavBar: React.FC<NavBarProps> = ({
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) {