1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-22 11:45:59 +01: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;