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 a3af52bdc73..a1240b9b1f2 100644 --- a/apps/desktop/src/autofill/modal/credentials/fido2-create.component.ts +++ b/apps/desktop/src/autofill/modal/credentials/fido2-create.component.ts @@ -170,13 +170,17 @@ export class Fido2CreateComponent implements OnInit, OnDestroy { try { const allCiphers = await this.cipherService.getAllDecrypted(activeUserId); + // eslint-disable-next-line no-console + console.log("Retrieved all decrypted ciphers"); return allCiphers.filter( (cipher) => cipher.login?.matchesUri(rpid, equivalentDomains) && Fido2Utils.cipherHasNoOtherPasskeys(cipher, userHandle) && !cipher.deletedDate, ); - } catch { + } catch (error) { + // eslint-disable-next-line no-console + console.log("Failed filtering ciphers with error: ", error); await this.showErrorDialog(DIALOG_MESSAGES.unexpectedErrorShort); return []; }