From 1ef865250af1537fdff59f3a5f9485b327be3c6d Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Fri, 10 Apr 2026 08:20:44 +0200 Subject: [PATCH] Fix login blank page issue --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index adb432f..85fb468 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -21,7 +21,7 @@ export default function App() { const handleSignOut = () => { signOut(); - window.location.href = '/'; + setSession(null); }; if (!session) {