fix: crash on wallet view (#15502)

This commit is contained in:
yqrashawn 2023-03-29 19:50:29 +08:00 committed by GitHub
parent 006b11d508
commit a441156ff9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -3,10 +3,10 @@
[re-frame.core :as re-frame]
[status-im.ethereum.core :as ethereum]
[status-im.ethereum.tokens :as tokens]
[utils.i18n :as i18n]
[status-im2.config :as config]
[status-im.utils.currency :as currency]
[status-im.utils.money :as money]))
[status-im.utils.money :as money]
[status-im2.config :as config]
[utils.i18n :as i18n]))
(re-frame/reg-sub
:balance
@ -253,7 +253,7 @@
:wallet/currency
:<- [:wallet.settings/currency]
(fn [currency-id]
(get currency/currencies currency-id)))
(get currency/currencies currency-id (get currency/currencies :usd))))
(defn filter-recipient-favs
[search-filter {:keys [name]}]