1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 05:30:01 +00:00

Fix test and build issues

This commit is contained in:
Bernd Schoolmann
2025-07-16 20:36:48 +02:00
parent ea167fc3cc
commit a12e4e0a5f
3 changed files with 6 additions and 1 deletions

View File

@@ -669,6 +669,8 @@ export default class MainBackground {
this.encryptService,
this.logService,
this.cryptoFunctionService,
this.kdfConfigService,
this.accountService,
);
this.i18nService = new I18nService(BrowserApi.getUILanguage(), this.globalStateProvider);

View File

@@ -1024,6 +1024,8 @@ const safeProviders: SafeProvider[] = [
EncryptService,
LogService,
CryptoFunctionServiceAbstraction,
KdfConfigService,
AccountServiceAbstraction,
],
}),
safeProvider({

View File

@@ -1,9 +1,10 @@
import { Opaque } from "type-fest";
import { EncString } from "@bitwarden/common/platform/models/domain/enc-string";
// eslint-disable-next-line no-restricted-imports
import { KdfConfig } from "@bitwarden/key-management";
import { EncString } from "../../crypto/models/enc-string";
/**
* The Base64-encoded master password authentication hash, that is sent to the server for authentication.
*/