Skip to content

Commit

Permalink
Fix some UI warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rasom committed Sep 25, 2020
1 parent abe6e97 commit b5f7a62
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
15 changes: 8 additions & 7 deletions src/status_im/ui/components/invite/views.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,14 @@
[rn/view {:style {:flex-direction :row
:justify-content :center}}
[rn/view {:style (styles/home-tokens-icons (count tokens))}
(for [[{name :name
{source :source} :icon} _ i] tokens]
^{:key name}
[rn/view {:style (styles/home-token-icon-style i)}
[rn/image {:source (if (fn? source) (source) source)
:style {:width 20
:height 20}}]])]
(doall
(for [[{name :name
{source :source} :icon} _ i] tokens]
^{:key name}
[rn/view {:style (styles/home-token-icon-style i)}
[rn/image {:source (if (fn? source) (source) source)
:style {:width 20
:height 20}}]]))]
[quo/text {:align :center}
(i18n/label :t/invite-reward)]])]])))

Expand Down
2 changes: 1 addition & 1 deletion src/status_im/ui/screens/multiaccounts/views.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
[react/view styles/multiaccounts-container
[list/flat-list {:data (vals multiaccounts)
:contentContainerStyle styles/multiaccounts-list-container
:key-fn :address
:key-fn (comp str :address)
:render-fn multiaccount-view}]]
[toolbar/toolbar
{:show-border? true
Expand Down
18 changes: 9 additions & 9 deletions src/status_im/ui/screens/profile/contact/views.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -195,16 +195,16 @@
:subtitle second-name})}

[react/view {:padding-top 12}
(for [{:keys [label subtext accessibility-label icon action disabled?]} (actions contact)]
(for [{:keys [label subtext accessibility-label icon action disabled?]} (actions contact)
:when label]
^{:key label}
(when label
[quo/list-item {:theme :accent
:title label
:subtitle subtext
:icon icon
:accessibility-label accessibility-label
:disabled disabled?
:on-press action}]))]
[quo/list-item {:theme :accent
:title label
:subtitle subtext
:icon icon
:accessibility-label accessibility-label
:disabled disabled?
:on-press action}])]
[react/view styles/contact-profile-details-container
[profile-details contact]
[chat-settings contact]]
Expand Down

0 comments on commit b5f7a62

Please sign in to comment.