1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 05:43:41 +00:00

move initialization of UV service dep (#10290)

This commit is contained in:
Jake Fink
2024-07-26 14:23:20 -04:00
committed by GitHub
parent 7594ebead2
commit a437868727

View File

@@ -625,6 +625,8 @@ export class ServiceContainer {
const lockedCallback = async (userId?: string) =>
await this.cryptoService.clearStoredUserKey(KeySuffixOptions.Auto);
this.userVerificationApiService = new UserVerificationApiService(this.apiService);
this.userVerificationService = new UserVerificationService(
this.cryptoService,
this.accountService,
@@ -729,8 +731,6 @@ export class ServiceContainer {
this.auditService = new AuditService(this.cryptoFunctionService, this.apiService);
this.userVerificationApiService = new UserVerificationApiService(this.apiService);
this.eventUploadService = new EventUploadService(
this.apiService,
this.stateProvider,