Make recaptcha optional

This commit is contained in:
Robert Long 2022-01-07 11:31:53 -08:00
parent 86ccc2431e
commit 096460ecfe

View file

@ -52,6 +52,10 @@ export function useRecaptcha(sitekey) {
}, [recaptchaId, sitekey]);
const execute = useCallback(() => {
if (!sitekey) {
return Promise.resolve(null);
}
if (!window.grecaptcha) {
return Promise.reject(new Error("Recaptcha not loaded"));
}