diff --git a/apps/desktop/src/autofill/modal/credentials/fido2-create.component.ts b/apps/desktop/src/autofill/modal/credentials/fido2-create.component.ts index cd751499adb..7c48c0c2f16 100644 --- a/apps/desktop/src/autofill/modal/credentials/fido2-create.component.ts +++ b/apps/desktop/src/autofill/modal/credentials/fido2-create.component.ts @@ -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 []; } }),