Skip to content

Commit

Permalink
fix invisible captcha call
Browse files Browse the repository at this point in the history
  • Loading branch information
gergosimonyi committed Nov 15, 2024
1 parent 0bdef2a commit cf5f88e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/flow/stages/captcha/CaptchaStage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export class CaptchaStage extends BaseStage<CaptchaChallenge, CaptchaChallengeRe
.forEach((el) => el.remove());
document.head.appendChild(this.scriptElement);
if (!this.challenge.interactive) {
document.appendChild(this.captchaDocumentContainer);
document.body.appendChild(this.captchaDocumentContainer);
}
}
}
Expand Down

0 comments on commit cf5f88e

Please sign in to comment.