Remove redundant error messaging (#1187)
* Remove redundant error messaging Remove the "WebAuth Error" prefix from WebAuthn error strings * Update src/connectors/webauthn.ts Co-authored-by: Oscar Hinton <oscar@oscarhinton.com> Co-authored-by: Oscar Hinton <oscar@oscarhinton.com>
This commit is contained in:
parent
9972c8ac61
commit
fb89421b09
|
@ -119,7 +119,7 @@ function executeWebAuthn() {
|
|||
|
||||
navigator.credentials.get({ publicKey: obj })
|
||||
.then(success)
|
||||
.catch(err => error('WebAuth Error: ' + err));
|
||||
.catch(error);
|
||||
}
|
||||
|
||||
function onMessage() {
|
||||
|
|
Loading…
Reference in New Issue