From 28217cb4c91fbde9b244e0d1ad5264da1078cf20 Mon Sep 17 00:00:00 2001 From: bir Date: Fri, 17 Jan 2025 10:40:05 +0100 Subject: [PATCH] voiceover in "Terms and Agreement" close #8292 --- src/common/subscription/SignupForm.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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")] } /**