Token table caching issue resolved #5

Merged
Atul merged 1 commits from dev/TokenTableCachingIssue into main 2025-05-19 06:10:17 +00:00

View File

@ -90,7 +90,7 @@ export default function AuthPage() {
if (user) {
localStorage.setItem("isLoggedIn", "true");
setIsAuthenticated(true);
router.push("/dashboard");
window.location.href = '/dashboard';
}
}
} catch (error) {