1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

move sso properties to globalstate (#583)

* move sso properties to globalstate

* whitespace

* npm prettier changes
This commit is contained in:
Jake Fink
2021-12-17 11:24:38 -05:00
committed by GitHub
parent a8168d6ee7
commit 59a5300458
4 changed files with 38 additions and 30 deletions

View File

@@ -5,6 +5,9 @@ export class GlobalState {
locale?: string;
openAtLogin?: boolean;
organizationInvitation?: any;
ssoCodeVerifier?: string;
ssoOrganizationIdentifier?: string;
ssoState?: string;
rememberedEmail?: string;
theme?: string;
window?: Map<string, any> = new Map<string, any>();