fix: event payload if any captcha failed

This commit is contained in:
Tony Yang
2025-04-20 00:18:04 +08:00
parent da58730692
commit a23aedee52
+1 -5
View File
@@ -69,11 +69,7 @@ watch(
}); });
} else { } else {
// At least one token is missing // At least one token is missing
emit('captchaVerified', { emit('captchaVerified', null);
hCaptchaResponse: null,
recaptchaResponse: null,
turnstileResponse: null
});
} }
} }
); );