mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
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:
@@ -119,7 +119,7 @@ function executeWebAuthn() {
|
|||||||
|
|
||||||
navigator.credentials.get({ publicKey: obj })
|
navigator.credentials.get({ publicKey: obj })
|
||||||
.then(success)
|
.then(success)
|
||||||
.catch(err => error('WebAuth Error: ' + err));
|
.catch(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onMessage() {
|
function onMessage() {
|
||||||
|
|||||||
Reference in New Issue
Block a user