From 69e07ecef28d865748c9e0487fab533663dbf801 Mon Sep 17 00:00:00 2001 From: barsa Date: Mon, 19 Jan 2026 17:29:07 +0900 Subject: [PATCH] feat: Set hasCheckedAuth to true upon successful login/signup --- apps/portal/src/features/auth/stores/auth.store.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/portal/src/features/auth/stores/auth.store.ts b/apps/portal/src/features/auth/stores/auth.store.ts index 573dfe15..6d4750ce 100644 --- a/apps/portal/src/features/auth/stores/auth.store.ts +++ b/apps/portal/src/features/auth/stores/auth.store.ts @@ -73,6 +73,7 @@ export const useAuthStore = create()((set, get) => { refreshExpiresAt: data.session.refreshExpiresAt, }, isAuthenticated: true, + hasCheckedAuth: true, // Auth verified via successful login/signup loading: keepLoading, error: null, });