From 4ea0bd370609294e3cf70f467d234093fc6e87fb Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Tue, 27 Sep 2022 21:10:22 -0700 Subject: Remove reset() from abort service --- packages/browser/src/methods/startAuthentication.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'packages/browser/src/methods/startAuthentication.ts') diff --git a/packages/browser/src/methods/startAuthentication.ts b/packages/browser/src/methods/startAuthentication.ts index 4cbe688..761a96c 100644 --- a/packages/browser/src/methods/startAuthentication.ts +++ b/packages/browser/src/methods/startAuthentication.ts @@ -80,8 +80,6 @@ export async function startAuthentication( credential = (await navigator.credentials.get(options)) as AuthenticationCredential; } catch (err) { throw identifyAuthenticationError({ error: err as Error, options }); - } finally { - webauthnAbortService.reset(); } if (!credential) { -- cgit v1.2.3