flip the authentication state

This commit is contained in:
2025-07-31 18:39:26 -07:00
parent 31708cdb15
commit e555fddfb4
@@ -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 {