diff --git a/common/src/services/constants.service.ts b/common/src/services/constants.service.ts index faa88b04e92..9202f8620b7 100644 --- a/common/src/services/constants.service.ts +++ b/common/src/services/constants.service.ts @@ -7,6 +7,7 @@ export class ConstantsService { static readonly disableFaviconKey: string = 'disableFavicon'; static readonly disableBadgeCounterKey: string = 'disableBadgeCounter'; static readonly disableAutoTotpCopyKey: string = 'disableAutoTotpCopy'; + static readonly disableAutoBiometricsPromptKey: string = 'noAutoPromptBiometrics'; static readonly enableAutoFillOnPageLoadKey: string = 'enableAutoFillOnPageLoad'; static readonly autoFillOnPageLoadDefaultKey: string = 'autoFillOnPageLoadDefault'; static readonly vaultTimeoutKey: string = 'lockOption'; @@ -39,6 +40,7 @@ export class ConstantsService { readonly disableFaviconKey: string = ConstantsService.disableFaviconKey; readonly disableBadgeCounterKey: string = ConstantsService.disableBadgeCounterKey; readonly disableAutoTotpCopyKey: string = ConstantsService.disableAutoTotpCopyKey; + readonly disableAutoBiometricsPromptKey: string = ConstantsService.disableAutoBiometricsPromptKey; readonly enableAutoFillOnPageLoadKey: string = ConstantsService.enableAutoFillOnPageLoadKey; readonly autoFillOnPageLoadDefaultKey: string = ConstantsService.autoFillOnPageLoadDefaultKey; readonly vaultTimeoutKey: string = ConstantsService.vaultTimeoutKey; diff --git a/electron/src/electronConstants.ts b/electron/src/electronConstants.ts index 7cd4d7f3869..68be19562a2 100644 --- a/electron/src/electronConstants.ts +++ b/electron/src/electronConstants.ts @@ -10,6 +10,5 @@ export class ElectronConstants { static readonly enableBrowserIntegrationFingerprint: string = 'enableBrowserIntegrationFingerprint'; static readonly alwaysShowDock: string = 'alwaysShowDock'; static readonly openAtLogin: string = 'openAtLogin'; - static readonly noAutoPromptBiometrics: string = 'noAutoPromptBiometrics'; static readonly noAutoPromptBiometricsText: string = 'noAutoPromptBiometricsText'; }