Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 6643223

Browse files
committed
fix(client): hide recaptcha legal notice on register when disabled
1 parent c0bc433 commit 6643223

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/routes/register.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export default withStyles({
106106
<CtftimeButton class='col-6' onCtftimeDone={this.handleCtftimeDone} />
107107
</Fragment>
108108
)}
109-
{requestRecaptchaCode && (
109+
{recaptchaEnabled && (
110110
<div class={classes.recaptchaLegalNotice}>
111111
<RecaptchaLegalNotice />
112112
</div>

0 commit comments

Comments
 (0)