summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/helpers/webAuthnAbortService.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-09-28 23:48:54 -0700
committerMatthew Miller <matthew@millerti.me>2023-09-28 23:48:54 -0700
commitd2777819d7904945b817ca46447853d32803a219 (patch)
tree6c56ff8553012045b5b373218419f91e8034bf46 /packages/browser/src/helpers/webAuthnAbortService.ts
parent1c70e39302d81eb6fe2ba23da07c60f2dc397498 (diff)
Rename webauthnAbortService
Diffstat (limited to 'packages/browser/src/helpers/webAuthnAbortService.ts')
-rw-r--r--packages/browser/src/helpers/webAuthnAbortService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/helpers/webAuthnAbortService.ts b/packages/browser/src/helpers/webAuthnAbortService.ts
index 50e00ba..ed007e2 100644
--- a/packages/browser/src/helpers/webAuthnAbortService.ts
+++ b/packages/browser/src/helpers/webAuthnAbortService.ts
@@ -2,7 +2,7 @@
* A way to cancel an existing WebAuthn request, for example to cancel a
* WebAuthn autofill authentication request for a manual authentication attempt.
*/
-class WebAuthnAbortService {
+class BaseWebAuthnAbortService {
private controller: AbortController | undefined;
/**
@@ -26,4 +26,4 @@ class WebAuthnAbortService {
}
}
-export const webauthnAbortService = new WebAuthnAbortService();
+export const WebauthnAbortService = new BaseWebAuthnAbortService();