diff --git a/src/cli/commands/login.command.ts b/src/cli/commands/login.command.ts index 6cde86933c..9d6e6bf243 100644 --- a/src/cli/commands/login.command.ts +++ b/src/cli/commands/login.command.ts @@ -35,7 +35,9 @@ export class LoginCommand { constructor(protected authService: AuthService, protected apiService: ApiService, protected i18nService: I18nService, protected environmentService: EnvironmentService, protected passwordGenerationService: PasswordGenerationService, - protected cryptoFunctionService: CryptoFunctionService) { } + protected cryptoFunctionService: CryptoFunctionService, clientId: string) { + this.clientId = clientId; + } async run(email: string, password: string, cmd: program.Command) { this.canInteract = process.env.BW_NOINTERACTION !== 'true';