1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

Getting the WebVault url before returning the send on cli's remove password command (#7382)

This commit is contained in:
aj-rosado
2024-01-02 10:54:32 +00:00
committed by GitHub
parent 9694939c4c
commit 1c876bea55
3 changed files with 10 additions and 2 deletions

View File

@@ -297,7 +297,11 @@ export class SendProgram extends Program {
})
.action(async (id: string) => {
await this.exitIfLocked();
const cmd = new SendRemovePasswordCommand(this.main.sendService, this.main.sendApiService);
const cmd = new SendRemovePasswordCommand(
this.main.sendService,
this.main.sendApiService,
this.main.environmentService,
);
const response = await cmd.run(id);
this.processResponse(response);
});