diff --git a/src/popup/services/services.module.ts b/src/popup/services/services.module.ts index e02050ed01..9c1c1d9684 100644 --- a/src/popup/services/services.module.ts +++ b/src/popup/services/services.module.ts @@ -67,7 +67,7 @@ export const authService = new AuthService(getBgService('cryptoSe getBgService('apiService')(), getBgService('userService')(), getBgService('tokenService')(), getBgService('appIdService')(), getBgService('i18nService')(), getBgService('platformUtilsService')(), - messagingService); + messagingService, getBgService('vaultTimeoutService')()); export const searchService = new PopupSearchService(getBgService('searchService')(), getBgService('cipherService')(), getBgService('platformUtilsService')()); diff --git a/src/services/browserPlatformUtils.service.ts b/src/services/browserPlatformUtils.service.ts index ee413320a7..0d367e3b65 100644 --- a/src/services/browserPlatformUtils.service.ts +++ b/src/services/browserPlatformUtils.service.ts @@ -287,6 +287,14 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService }); } + supportsBiometric() { + return Promise.resolve(false); + } + + authenticateBiometric() { + return Promise.resolve(false); + } + private sidebarViewName(): string { if ((window as any).chrome.sidebarAction && this.isFirefox()) { return 'sidebar';