fix: error is shown when asset is selected on select assets screen (#18326)
Signed-off-by: Brian Sztamfater <brian@status.im>
This commit is contained in:
parent
d64508a74a
commit
205962f582
|
@ -16,7 +16,11 @@
|
||||||
|
|
||||||
(defn- make-limit-label
|
(defn- make-limit-label
|
||||||
[{:keys [amount currency]}]
|
[{:keys [amount currency]}]
|
||||||
(str amount " " (string/upper-case (name currency))))
|
(str amount
|
||||||
|
" "
|
||||||
|
(some-> currency
|
||||||
|
name
|
||||||
|
string/upper-case)))
|
||||||
|
|
||||||
(def not-digits-or-dot-pattern
|
(def not-digits-or-dot-pattern
|
||||||
#"[^0-9+\.]")
|
#"[^0-9+\.]")
|
||||||
|
|
Loading…
Reference in New Issue