fix: change error to errorInput in webAuthnRegister.ts

This commit is contained in:
Klaus Betz 2024-05-16 11:14:35 +02:00 committed by GitHub
parent 11d6ffa65b
commit b19f31a109
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -216,7 +216,7 @@ document.addEventListener('alpine:init', () => {
}
})
.catch(function (error) {
error.value = error;
errorInput.value = error;
registerForm.submit();
});
},