From 07c24e13930d571431e495ccffc4683a5acdcddc Mon Sep 17 00:00:00 2001 From: Jacob Fink Date: Fri, 23 Jun 2023 11:07:49 -0400 Subject: [PATCH] remove userId from browser crypto service --- apps/browser/src/platform/services/browser-crypto.service.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/browser/src/platform/services/browser-crypto.service.ts b/apps/browser/src/platform/services/browser-crypto.service.ts index e7f0e13a16..8ade200ec4 100644 --- a/apps/browser/src/platform/services/browser-crypto.service.ts +++ b/apps/browser/src/platform/services/browser-crypto.service.ts @@ -8,8 +8,7 @@ import { CryptoService } from "@bitwarden/common/platform/services/crypto.servic export class BrowserCryptoService extends CryptoService { protected override async retrieveUserKeyFromStorage( - keySuffix: KeySuffixOptions, - userId?: string + keySuffix: KeySuffixOptions ): Promise { if (keySuffix === KeySuffixOptions.Biometric) { await this.platformUtilService.authenticateBiometric();