feat: Implement useImageStatus hook and enhance image loading status handling across various components to address cached images and loading timeouts.

This commit is contained in:
pradeepkumar
2026-03-18 11:54:40 +05:30
parent f3c4e31924
commit 772e1024cc
17 changed files with 211 additions and 93 deletions

View File

@@ -35,6 +35,9 @@ export default function LogoutPage() {
// Delete cookies again after signOut in case signOut recreated any
await clearAuthCookies();
// Clear the logout flag before redirecting so it doesn't block API calls on public pages
localStorage.removeItem('isLoggingOut');
// Redirect to login immediately
window.location.href = '/login';
};