1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-25 20:53:28 +00:00

[bug] Initialize GlobalState by default

This commit is contained in:
addison
2021-11-12 12:32:56 -05:00
parent 234fb7357e
commit 2d124d6883

View File

@@ -3,7 +3,7 @@ import { GlobalState } from './globalState';
export class State {
accounts: { [userId: string]: Account } = {};
globals: GlobalState;
globals: GlobalState = new GlobalState();
activeUserId: string;
}