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

[bug] Move enableBrowserIntegration to global state (#630)

This commit is contained in:
Addison Beck
2022-01-24 10:47:41 -05:00
committed by GitHub
parent 4436e5fb60
commit e5cc3de46d
4 changed files with 20 additions and 22 deletions

View File

@@ -122,8 +122,6 @@ export class AccountSettings {
enableAlwaysOnTop?: boolean;
enableAutoFillOnPageLoad?: boolean;
enableBiometric?: boolean;
enableBrowserIntegration?: boolean;
enableBrowserIntegrationFingerprint?: boolean;
enableFullWidth?: boolean;
enableGravitars?: boolean;
environmentUrls: EnvironmentUrls = new EnvironmentUrls();

View File

@@ -32,4 +32,6 @@ export class GlobalState {
enableStartToTray?: boolean;
openAtLogin?: boolean;
alwaysShowDock?: boolean;
enableBrowserIntegration?: boolean;
enableBrowserIntegrationFingerprint?: boolean;
}