From e555fddfb47903cbb4ebf0aa8f8a44f7bccdd283 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Thu, 31 Jul 2025 18:39:26 -0700 Subject: [PATCH] flip the authentication state --- src/Client/src/app/services/Authentication.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client/src/app/services/Authentication.ts b/src/Client/src/app/services/Authentication.ts index 93bf139..8a25a86 100644 --- a/src/Client/src/app/services/Authentication.ts +++ b/src/Client/src/app/services/Authentication.ts @@ -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 {