Add recaptcha debugging

This commit is contained in:
Robert Long
2022-01-18 11:47:10 -08:00
parent f6b3d6830e
commit 36d59c98c0
2 changed files with 9 additions and 0 deletions

View File

@@ -64,7 +64,9 @@ export function RegisterPage() {
if (isPasswordlessUser) {
await changePassword(password);
} else {
console.log("executing recaptcha");
const recaptchaResponse = await execute();
console.log("recaptcha response", recaptchaResponse);
await register(userName, password, recaptchaResponse);
}
}