From 932e4b370749bd636c7381f097ec42ff49031cf2 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Thu, 28 Sep 2023 17:56:07 -0400 Subject: [PATCH] Fix null active account --- libs/common/src/auth/services/account.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/common/src/auth/services/account.service.ts b/libs/common/src/auth/services/account.service.ts index 735c9a69f2f..5b73745f25a 100644 --- a/libs/common/src/auth/services/account.service.ts +++ b/libs/common/src/auth/services/account.service.ts @@ -49,6 +49,7 @@ export class AccountServiceImplementation implements InternalAccountService { if (userId == null) { // indicates no account is active this.activeAccountId.next(undefined); + return; } if (this.accounts.value[userId] == null) {