1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

Fix #7970 browser builds (#8055)

This PR removed the setting of a session-synced subject but failed to remove session sync from the browser instance of state service.
This commit is contained in:
Matt Gibson
2024-02-22 17:00:42 -05:00
committed by GitHub
parent c5d093be4c
commit 220268b25d

View File

@@ -34,8 +34,6 @@ export class BrowserStateService
protected accountsSubject: BehaviorSubject<{ [userId: string]: Account }>;
@sessionSync({ initializer: (s: string) => s })
protected activeAccountSubject: BehaviorSubject<string>;
@sessionSync({ initializer: (b: boolean) => b })
protected activeAccountUnlockedSubject: BehaviorSubject<boolean>;
protected accountDeserializer = Account.fromJSON;