File tree 2 files changed +5
-3
lines changed
src/status_im/contexts/communities/actions
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 39
39
:right-icon :i/chevron-right
40
40
:accessibility-label :view-token-gating
41
41
:on-press #(rf/dispatch [:show-bottom-sheet
42
- {:content (fn [] [token-gating/token-requirements id])}])
42
+ {:content (fn [] [token-gating/token-requirements
43
+ id])
44
+ :padding-bottom-override 16 }])
43
45
:label (i18n/label :t/view-token-gating )})
44
46
45
47
(defn edit-shared-addresses
Original file line number Diff line number Diff line change 9
9
[]
10
10
(fn [id]
11
11
(let [{:keys [can-request-access? tokens]} (rf/sub [:community/token-gated-overview id])]
12
- [rn/view {:style {:padding-horizontal 12 }}
12
+ [rn/view {:style {:padding-horizontal 20 }}
13
13
[quo/text {:weight :medium }
14
14
(if can-request-access?
15
15
(i18n/label :t/you-eligible-to-join )
16
16
(i18n/label :t/you-not-eligible-to-join ))]
17
- [quo/text {:style {:padding-bottom 18 } :size :paragraph-2 }
17
+ [quo/text {:style {:padding-bottom 8 } :size :paragraph-2 }
18
18
(if can-request-access?
19
19
(i18n/label :t/you-hodl )
20
20
(i18n/label :t/you-must-hold ))]
You can’t perform that action at this time.
0 commit comments