diff options
author | Matthew Miller <matthew@millerti.me> | 2022-03-04 16:43:26 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-03-04 16:43:26 -0800 |
commit | 8d2aa2ebcc8a5134175402959f1fc47415db3300 (patch) | |
tree | 7374d6f352a879c86de1e712702295b01a7fc226 /packages/browser/src | |
parent | d7824fcb0c5d88fc3726b81b2618dd122c24e71f (diff) |
Remove console.log statements
Diffstat (limited to 'packages/browser/src')
-rw-r--r-- | packages/browser/src/helpers/identifyRegistrationError.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/browser/src/helpers/identifyRegistrationError.ts b/packages/browser/src/helpers/identifyRegistrationError.ts index d48d194..45e34d7 100644 --- a/packages/browser/src/helpers/identifyRegistrationError.ts +++ b/packages/browser/src/helpers/identifyRegistrationError.ts @@ -5,8 +5,6 @@ export function identifyRegistrationError({ error, options }: { options: CredentialCreationOptions, }): WebAuthnError | Error { const { publicKey } = options; - console.log(error); - console.log(options); if (!publicKey) { throw Error('options was missing required publicKey property'); |