1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 04:03:29 +00:00

Different error messages

This commit is contained in:
Anders Åberg
2025-07-02 22:31:09 +02:00
parent 448a9292b7
commit 6b77eb65d1

View File

@@ -176,8 +176,9 @@ export class Fido2CreateComponent implements OnInit, OnDestroy {
Fido2Utils.cipherHasNoOtherPasskeys(cipher, userHandle) &&
!cipher.deletedDate,
);
} catch {
await this.showErrorDialog(DIALOG_MESSAGES.unexpectedErrorShort);
} catch (e) {
console.error("Error decrypting and filtering ciphers:", e);
await this.showErrorDialog(e);
return [];
}
}),