From 2a1b0b024a149b70928b495828f869c80f09dec5 Mon Sep 17 00:00:00 2001 From: Marcos Reifonas Date: Fri, 14 Aug 2026 10:16:08 +0000 Subject: [PATCH] fix(auth): limpa cache the timer no signout --- src/hooks/useAuth.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hooks/useAuth.tsx b/src/hooks/useAuth.tsx index 231e116..fc41b3a 100644 --- a/src/hooks/useAuth.tsx +++ b/src/hooks/useAuth.tsx @@ -374,6 +374,7 @@ export function AuthProvider({ children }: { children: ReactNode }) { } setIsRecoveryFlow(false); + localStorage.removeItem('userLoginTime'); // Reseta timer do front-end try { await supabase.auth.signOut(); } catch (error) {