flip the authentication state #15

Merged
derek merged 1 commits from working into main 2025-07-31 18:39:48 -07:00
@@ -31,7 +31,7 @@ export class Authentication{
} }
get isLoggedIn(): boolean { get isLoggedIn(): boolean {
return this._user.value.id == null ? true : false; return this._user.value.id != null ? true : false;
} }
get loggedInUser(): Account { get loggedInUser(): Account {