Fix null recaptcha target

This commit is contained in:
Robert Long 2022-02-03 14:18:34 -08:00
parent a189f3ad98
commit a33d1364b6

View file

@ -64,7 +64,7 @@ export function useRecaptcha(sitekey) {
return new Promise((resolve, reject) => {
const observer = new MutationObserver((mutationsList) => {
for (const item of mutationsList) {
if (item.target.style?.visibility !== "visible") {
if (item.target?.style?.visibility !== "visible") {
reject(new Error("Recaptcha dismissed"));
observer.disconnect();
return;