flip the authentication state #15

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