Merge pull request 'flip the authentication state' (#15) from working into main
Docker Build and Release Upload / build (push) Successful in 1m20s

Reviewed-on: #15
This commit was merged in pull request #15.
This commit is contained in:
2025-08-01 01:39:47 +00: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 {