diff --git a/ghost/portal/src/components/pages/SignupPage.js b/ghost/portal/src/components/pages/SignupPage.js index 8e961f6577..d6b86571ce 100644 --- a/ghost/portal/src/components/pages/SignupPage.js +++ b/ghost/portal/src/components/pages/SignupPage.js @@ -495,7 +495,13 @@ class SignupPage extends React.Component { }); }; - const checkbox = site.portal_signup_checkbox_required ? ( + const termsText = ( +
+ ); + + const signupTerms = site.portal_signup_checkbox_required ? ( - ) : null; + ) : termsText; const errorClassName = this.state.errors?.checkbox ? 'gh-portal-error' : ''; @@ -516,7 +520,7 @@ class SignupPage extends React.Component { return (