Make recaptcha optional
This commit is contained in:
parent
86ccc2431e
commit
096460ecfe
1 changed files with 4 additions and 0 deletions
|
@ -52,6 +52,10 @@ export function useRecaptcha(sitekey) {
|
||||||
}, [recaptchaId, sitekey]);
|
}, [recaptchaId, sitekey]);
|
||||||
|
|
||||||
const execute = useCallback(() => {
|
const execute = useCallback(() => {
|
||||||
|
if (!sitekey) {
|
||||||
|
return Promise.resolve(null);
|
||||||
|
}
|
||||||
|
|
||||||
if (!window.grecaptcha) {
|
if (!window.grecaptcha) {
|
||||||
return Promise.reject(new Error("Recaptcha not loaded"));
|
return Promise.reject(new Error("Recaptcha not loaded"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue