diff --git a/src/common/subscription/SignupForm.ts b/src/common/subscription/SignupForm.ts index 9ad6a63c41e6..2b82a5ad59cd 100644 --- a/src/common/subscription/SignupForm.ts +++ b/src/common/subscription/SignupForm.ts @@ -204,6 +204,8 @@ export class SignupForm implements Component { }) : null, m(Checkbox, confirmTermsCheckBoxAttrs), + m("div", renderTermsAndConditionsButton(TermsSection.Terms, CURRENT_TERMS_VERSION)), + m("div", renderTermsAndConditionsButton(TermsSection.Privacy, CURRENT_PRIVACY_VERSION)), m(Checkbox, confirmAgeCheckBoxAttrs), ], m( @@ -240,11 +242,7 @@ export class SignupForm implements Component { } function renderTermsLabel(): Children { - return [ - lang.get("termsAndConditions_label"), - m("div", renderTermsAndConditionsButton(TermsSection.Terms, CURRENT_TERMS_VERSION)), - m("div", renderTermsAndConditionsButton(TermsSection.Privacy, CURRENT_PRIVACY_VERSION)), - ] + return [lang.get("termsAndConditions_label")] } /**