diff options
Diffstat (limited to 'packages/browser/src/helpers/webAuthnAbortService.ts')
-rw-r--r-- | packages/browser/src/helpers/webAuthnAbortService.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/helpers/webAuthnAbortService.ts b/packages/browser/src/helpers/webAuthnAbortService.ts index eb0e9be..50e00ba 100644 --- a/packages/browser/src/helpers/webAuthnAbortService.ts +++ b/packages/browser/src/helpers/webAuthnAbortService.ts @@ -13,9 +13,9 @@ class WebAuthnAbortService { // Abort any existing calls to navigator.credentials.create() or navigator.credentials.get() if (this.controller) { const abortError = new Error( - "Cancelling existing WebAuthn API call for new one", + 'Cancelling existing WebAuthn API call for new one', ); - abortError.name = "AbortError"; + abortError.name = 'AbortError'; this.controller.abort(abortError); } |