1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-23 03:22:50 +02:00

[PM-10652] remove excess MP reprompt call for fill and save (#10455)

This commit is contained in:
Jason Ng 2024-08-08 15:48:23 -04:00 committed by GitHub
parent 28a2014e69
commit 4556e59ee8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -76,13 +76,6 @@ export class ItemMoreOptionsComponent {
}
async doAutofillAndSave() {
if (
this.cipher.reprompt === CipherRepromptType.Password &&
!(await this.passwordRepromptService.showPasswordPrompt())
) {
return;
}
await this.vaultPopupAutofillService.doAutofillAndSave(this.cipher);
}