Skip to content

Commit b08e4c2

Browse files
committed
review
1 parent 67ddb5f commit b08e4c2

File tree

8 files changed

+13
-12
lines changed

8 files changed

+13
-12
lines changed

ios/Podfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ SPEC CHECKSUMS:
765765
RNLanguages: 962e562af0d34ab1958d89bcfdb64fafc37c513e
766766
RNPermissions: ad71dd4f767ec254f2cd57592fbee02afee75467
767767
RNReactNativeHapticFeedback: 2566b468cc8d0e7bb2f84b23adc0f4614594d071
768-
RNReanimated: 06a228c5a245ef7b5b03f0efc29d76ce4db9031c
768+
RNReanimated: 42f56dc5c032a11177b9ea12cdb57285318b432e
769769
RNShare: d82e10f6b7677f4b0048c23709bd04098d5aee6c
770770
RNStaticSafeAreaInsets: 055ddbf5e476321720457cdaeec0ff2ba40ec1b8
771771
RNSVG: 80584470ff1ffc7994923ea135a3e5ad825546b9

src/quo/components/graph/wallet_graph/view.cljs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
(:require
33
[quo.components.graph.utils :as utils]
44
[quo.components.graph.wallet-graph.style :as style]
5-
[quo.components.markdown.text :as text]
65
[quo.foundations.colors :as colors]
76
[quo.foundations.resources :as resources]
87
[quo.theme :as quo.theme]

src/quo/foundations/resources.cljs

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@
55
:keycard-chip-light (js/require "../resources/images/ui2/keycard-chip-light.png")
66
:keycard-chip-dark (js/require "../resources/images/ui2/keycard-chip-dark.png")
77
:keycard-watermark (js/require "../resources/images/ui2/keycard-watermark.png")
8-
:bored-ape (js/require "../resources/images/mock2/bored-ape.png")
9-
:no-funds
8+
:bored-ape (js/require "../resources/images/mock2/bored-ape.png")})
9+
10+
(def ui-themed
11+
{:no-funds
1012
{:light (js/require "../resources/images/ui2/no-funds-light.png")
1113
:dark (js/require "../resources/images/ui2/no-funds-dark.png")}})
1214

1315
(defn get-themed-image
1416
[k theme]
15-
(get-in ui [k theme]))
17+
(get-in ui-themed [k theme]))
1618

1719
(defn get-image
1820
[k]

src/status_im2/contexts/wallet/account/tabs/dapps/view.cljs

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
[status-im2.common.resources :as resources]
77
[status-im2.contexts.wallet.account.tabs.dapps.style :as style]
88
[status-im2.contexts.wallet.common.empty-tab.view :as empty-tab]
9-
[status-im2.contexts.wallet.common.temp :as temp]
10-
[utils.i18n :as i18n]
11-
[utils.re-frame :as rf]))
9+
[utils.i18n :as i18n]))
1210

1311
(defn dapp-options
1412
[]

src/status_im2/contexts/wallet/account/tabs/view.cljs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
(ns status-im2.contexts.wallet.account.tabs.view
22
(:require
3+
[quo.theme]
34
[react-native.core :as rn]
45
[status-im2.common.resources :as resources]
56
[status-im2.contexts.wallet.account.tabs.about.view :as about]
@@ -24,7 +25,9 @@
2425
{:title (i18n/label :t/no-permissions)
2526
:description (i18n/label :t/no-collectibles-description)
2627
:image (resources/get-image
27-
(quo.theme/theme-value :no-permissions-light :no-permissions-dark theme))}]
28+
(quo.theme/theme-value :no-permissions-light
29+
:no-permissions-dark
30+
theme))}]
2831
:dapps [dapps/view]
2932
[about/view]))
3033

src/status_im2/contexts/wallet/account/view.cljs

-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
[{:id :assets :label (i18n/label :t/assets) :accessibility-label :assets-tab}
2626
{:id :collectibles :label (i18n/label :t/collectibles) :accessibility-label :collectibles-tab}
2727
{:id :activity :label (i18n/label :t/activity) :accessibility-label :activity-tab}
28-
;; Disabled for new wallet MVP
29-
;{:id :permissions :label (i18n/label :t/permissions) :accessibility-label :permissions}
3028
{:id :dapps :label (i18n/label :t/dapps) :accessibility-label :dapps}
3129
{:id :about :label (i18n/label :t/about) :accessibility-label :about}])
3230

src/status_im2/contexts/wallet/common/activity_tab/view.cljs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
(ns status-im2.contexts.wallet.common.activity-tab.view
22
(:require
33
[quo.core :as quo]
4+
[quo.theme]
45
[react-native.core :as rn]
56
[status-im2.common.resources :as resources]
67
[status-im2.contexts.wallet.common.empty-tab.view :as empty-tab]
7-
[status-im2.contexts.wallet.common.temp :as temp]
88
[utils.i18n :as i18n]))
99

1010
(defn activity-item

src/status_im2/contexts/wallet/common/collectibles_tab/view.cljs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(ns status-im2.contexts.wallet.common.collectibles-tab.view
22
(:require
33
[quo.core :as quo]
4+
[quo.theme]
45
[react-native.core :as rn]
56
[status-im2.common.resources :as resources]
67
[status-im2.contexts.wallet.common.empty-tab.view :as empty-tab]

0 commit comments

Comments
 (0)