0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

fix(core): remove user verification requirement for webauthn (#4751)

This commit is contained in:
wangsijie 2023-10-27 11:50:49 +08:00 committed by GitHub
parent 85a39c35d7
commit 752d02b316
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ export const verifyWebAuthnRegistration = async (
expectedChallenge: challenge,
expectedOrigin: origin,
expectedRPID: rpId,
requireUserVerification: true,
requireUserVerification: false,
};
return verifyRegistrationResponse(options);
};