From 2fd879bb2df57678c87f70b062c0592d1c6c654c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Thu, 9 Mar 2023 13:01:14 +0100 Subject: [PATCH] Revert "chore: add temporary error log on authenticator authentication options generation" This reverts commit c098256f2fba17c6d2fe2308d18d984c5d6c9ee2. --- .../GetAuthenticatorAuthenticationResponse.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/snjs/lib/Domain/UseCase/GetAuthenticatorAuthenticationResponse/GetAuthenticatorAuthenticationResponse.ts b/packages/snjs/lib/Domain/UseCase/GetAuthenticatorAuthenticationResponse/GetAuthenticatorAuthenticationResponse.ts index 0d0e9defb..fad5fe6e1 100644 --- a/packages/snjs/lib/Domain/UseCase/GetAuthenticatorAuthenticationResponse/GetAuthenticatorAuthenticationResponse.ts +++ b/packages/snjs/lib/Domain/UseCase/GetAuthenticatorAuthenticationResponse/GetAuthenticatorAuthenticationResponse.ts @@ -32,8 +32,6 @@ export class GetAuthenticatorAuthenticationResponse implements UseCaseInterface< try { authenticatorResponse = await this.authenticatorVerificationPromptFunction(authenticationOptions) } catch (error) { - console.error(error) - return Result.fail(`Could not generate authenticator authentication options: ${(error as Error).message}`) }