summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-03-04 16:43:26 -0800
committerMatthew Miller <matthew@millerti.me>2022-03-04 16:43:26 -0800
commit8d2aa2ebcc8a5134175402959f1fc47415db3300 (patch)
tree7374d6f352a879c86de1e712702295b01a7fc226 /packages/browser/src
parentd7824fcb0c5d88fc3726b81b2618dd122c24e71f (diff)
Remove console.log statements
Diffstat (limited to 'packages/browser/src')
-rw-r--r--packages/browser/src/helpers/identifyRegistrationError.ts2
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');