refactor: Update loggedIn store type and streamline login/dashboard navigation logic
Some checks failed
SteamWarCI Build failed

This commit is contained in:
2025-12-17 21:20:46 +01:00
parent 3ffc715929
commit b0a9d56216
3 changed files with 13 additions and 15 deletions

View File

@@ -89,6 +89,6 @@ export class AuthV2Repo {
}
}
export const loggedIn = writable(false);
export const loggedIn = writable<boolean | undefined>(undefined);
export const authV2Repo = readable(new AuthV2Repo());