diff --git a/src/components/NavBar/NavItems.tsx b/src/components/NavBar/NavItems.tsx index cec154a..b794f3b 100644 --- a/src/components/NavBar/NavItems.tsx +++ b/src/components/NavBar/NavItems.tsx @@ -47,7 +47,7 @@ function NavItems({ classNameValue, isLoggedIn }: NavItemsProps) { try { await signOut(); // Optionally, you can redirect the user or update the UI here - window.location.href = '/'; // Redirect to home page after logout + // window.location.href = '/'; // Redirect to home page after logout } catch (error) { console.error('Logout failed:', error); }