From e787a190a9a6fb04510423f03f4fb2c28487a0c6 Mon Sep 17 00:00:00 2001 From: Adrian Tiberius Date: Tue, 5 Jul 2016 20:02:41 +0300 Subject: [PATCH] remove add account item --- src/status_im/accounts/screen.cljs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/status_im/accounts/screen.cljs b/src/status_im/accounts/screen.cljs index 34cc1d1982..fff89e7cf8 100644 --- a/src/status_im/accounts/screen.cljs +++ b/src/status_im/accounts/screen.cljs @@ -39,9 +39,7 @@ (defview accounts [] [accounts [:get :accounts]] - (let [accounts (conj (vals accounts) {:name (label :t/add-account) - :address "0x0" - :photo-path :icon_plus})] + (let [accounts (vals accounts)] [view st/screen-container [linear-gradient {:colors ["rgba(182, 116, 241, 1)" "rgba(107, 147, 231, 1)" "rgba(43, 171, 238, 1)"] :start [0, 0] @@ -65,4 +63,7 @@ :style st/account-list}]]])) -;(re-frame.core/dispatch [:set :view-id :users]) \ No newline at end of file +;(re-frame.core/dispatch [:set :view-id :users]) +;{:name (label :t/add-account) +;:address "0x0" +;:photo-path :icon_plus} \ No newline at end of file