We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc9ad4 commit 77b0ba9Copy full SHA for 77b0ba9
packages/web/src/auth/UserProvider.tsx
@@ -57,10 +57,10 @@ export const UserProvider = ({ children }: { children: ReactNode }) => {
57
}, [userId, email, posthog]);
58
59
// Allow unauthenticated users to proceed without blocking
60
- // Only show loader briefly while checking auth status
+ // Show a loading state while checking auth status
61
// Unauthenticated users will have profile.current === null, which is fine
62
if (isLoadingUser && profile.current === null) {
63
- // Brief loading state - but don't block indefinitely
+ // Loading state while user profile is being fetched
64
// The route loader handles auth redirects
65
return <AbsoluteOverflowLoader />;
66
}
0 commit comments