diff --git a/apps/browser/src/platform/services/browser-state.service.ts b/apps/browser/src/platform/services/browser-state.service.ts index ac5d1a9102..c544915e26 100644 --- a/apps/browser/src/platform/services/browser-state.service.ts +++ b/apps/browser/src/platform/services/browser-state.service.ts @@ -34,8 +34,6 @@ export class BrowserStateService protected accountsSubject: BehaviorSubject<{ [userId: string]: Account }>; @sessionSync({ initializer: (s: string) => s }) protected activeAccountSubject: BehaviorSubject; - @sessionSync({ initializer: (b: boolean) => b }) - protected activeAccountUnlockedSubject: BehaviorSubject; protected accountDeserializer = Account.fromJSON;