diff --git a/src/status_im/contexts/wallet/send/input_amount/view.cljs b/src/status_im/contexts/wallet/send/input_amount/view.cljs index fe7452808b..5507959cf3 100644 --- a/src/status_im/contexts/wallet/send/input_amount/view.cljs +++ b/src/status_im/contexts/wallet/send/input_amount/view.cljs @@ -16,7 +16,11 @@ (defn- make-limit-label [{:keys [amount currency]}] - (str amount " " (string/upper-case (name currency)))) + (str amount + " " + (some-> currency + name + string/upper-case))) (def not-digits-or-dot-pattern #"[^0-9+\.]")