diff --git a/src/status_im/contexts/onboarding/intro/view.cljs b/src/status_im/contexts/onboarding/intro/view.cljs index 4aa9cab6b2..79ac8af81b 100644 --- a/src/status_im/contexts/onboarding/intro/view.cljs +++ b/src/status_im/contexts/onboarding/intro/view.cljs @@ -29,32 +29,31 @@ :blur? true :checked? terms-accepted? :on-change #(set-terms-accepted? not)}]] - [rn/view {:style style/text-aligner} - [rn/view {:style style/text-container} - [quo/text - {:style style/plain-text - :size :paragraph-2} - (str (i18n/label :t/accept-status-tos-prefix) " ")] - [quo/text - {:on-press #(rf/dispatch [:show-bottom-sheet - {:content terms/terms-of-use - :shell? true}]) - :style style/highlighted-text - :size :paragraph-2 - :weight :medium} - (i18n/label :t/terms-of-service)] - [quo/text - {:style style/plain-text - :size :paragraph-2} - " " (i18n/label :t/and) " "] - [quo/text - {:on-press #(rf/dispatch [:show-bottom-sheet - {:content privacy/privacy-statement - :shell? true}]) - :style style/highlighted-text - :size :paragraph-2 - :weight :medium} - (i18n/label :t/intro-privacy-statement)]]]] + [rn/view {:style style/text-container} + [quo/text + {:style style/plain-text + :size :paragraph-2} + (str (i18n/label :t/accept-status-tos-prefix) " ")] + [quo/text + {:on-press #(rf/dispatch [:show-bottom-sheet + {:content terms/terms-of-use + :shell? true}]) + :style style/highlighted-text + :size :paragraph-2 + :weight :medium} + (i18n/label :t/terms-of-service)] + [quo/text + {:style style/plain-text + :size :paragraph-2} + " " (i18n/label :t/and) " "] + [quo/text + {:on-press #(rf/dispatch [:show-bottom-sheet + {:content privacy/privacy-statement + :shell? true}]) + :style style/highlighted-text + :size :paragraph-2 + :weight :medium} + (i18n/label :t/intro-privacy-statement)]]] :button-one-label (i18n/label :t/sync-or-recover-profile) :button-one-props {:type :dark-grey :disabled? (not terms-accepted?)