diff --git a/src/app/logout/page.tsx b/src/app/logout/page.tsx index 3e6a44e..9e090cb 100644 --- a/src/app/logout/page.tsx +++ b/src/app/logout/page.tsx @@ -47,11 +47,11 @@ export default function LogoutPage() { localStorage.removeItem('isLoggingOut'); // Redirect to login immediately - window.location.href = '/login'; + window.location.href = '/'; }; performLogout().catch(() => { - window.location.href = '/login'; + window.location.href = '/'; }); }, []);