Fix null recaptcha target
This commit is contained in:
parent
a189f3ad98
commit
a33d1364b6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue