diff options
author | Matthew Miller <matthew@millerti.me> | 2022-08-16 22:44:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-16 22:44:36 -0700 |
commit | 3fee22f217053933cffc8c68ee5236ddaadd3b3f (patch) | |
tree | 7899844a57e4492303d900f175a2b4641f2e7ad0 /packages/browser/src/index.ts | |
parent | 2de1972b2461837a83a40a6bbb6cb51719002d3b (diff) | |
parent | 963c20b39c54c500aceb032af6d6163448b772e0 (diff) |
Merge pull request #257 from MasterKale/fix/rename-browser-supports-webauthn
fix/rename-browser-supports-webauthn
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r-- | packages/browser/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index e288b7c..41e040f 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -4,14 +4,14 @@ */ import { startRegistration } from './methods/startRegistration'; import { startAuthentication } from './methods/startAuthentication'; -import { browserSupportsWebauthn } from './helpers/browserSupportsWebauthn'; +import { browserSupportsWebAuthn } from './helpers/browserSupportsWebAuthn'; import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable'; import { browserSupportsWebAuthnAutofill } from './helpers/browserSupportsWebAuthnAutofill'; export { startRegistration, startAuthentication, - browserSupportsWebauthn, + browserSupportsWebAuthn, browserSupportsWebAuthnAutofill, platformAuthenticatorIsAvailable, }; |