From 409f28e57deefe935c856af15a129ba67ddfc6df Mon Sep 17 00:00:00 2001 From: Milad Date: Thu, 18 Apr 2024 14:43:44 +0330 Subject: [PATCH] fix issue --- src/status_im/contexts/wallet/send/input_amount/view.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 b2505e062a..44290c7b0f 100644 --- a/src/status_im/contexts/wallet/send/input_amount/view.cljs +++ b/src/status_im/contexts/wallet/send/input_amount/view.cljs @@ -86,7 +86,7 @@ (defn- reset-input-error [new-value prev-value input-error] (reset! input-error - (> new-value prev-value))) + (> (js/parseFloat new-value) (js/parseFloat prev-value)))) (defn delete-from-string [s idx]