Skip to content

Commit

Permalink
move initialization of UV service dep (#10290)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlf0dev authored Jul 26, 2024
1 parent 7594ebe commit a437868
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cli/src/service-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit a437868

Please sign in to comment.