diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index d07cdc5..6d5d865 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -38,7 +38,7 @@ function AuthGate({ children }: { children: React.ReactNode }) { scopes: ['openid', 'profile', 'email'], }) setToken(result.idToken) - if (!user && !loading) fetchMe() + if (!user) fetchMe() } catch { instance.loginRedirect({ scopes: ['openid', 'profile', 'email'] }) }