diff --git a/apps/cli/src/service-container/service-container.ts b/apps/cli/src/service-container/service-container.ts index 6b0d15d63b2..6b189815fa1 100644 --- a/apps/cli/src/service-container/service-container.ts +++ b/apps/cli/src/service-container/service-container.ts @@ -431,6 +431,7 @@ export class ServiceContainer { migrationRunner, ); + this.kdfConfigService = new DefaultKdfConfigService(this.stateProvider); this.masterPasswordService = new MasterPasswordService( this.stateProvider, this.stateService, @@ -438,10 +439,10 @@ export class ServiceContainer { this.encryptService, this.logService, this.cryptoFunctionService, + this.kdfConfigService, + this.accountService, ); - this.kdfConfigService = new DefaultKdfConfigService(this.stateProvider); - this.pinService = new PinService( this.accountService, this.cryptoFunctionService,