From e1074c7c0197bbb4384e393cb0d6d934a5857c6d Mon Sep 17 00:00:00 2001 From: yenda Date: Mon, 18 May 2020 09:04:43 +0200 Subject: [PATCH] fix #10591 error when scrolling account view Signed-off-by: yenda --- src/status_im/ui/screens/wallet/account/styles.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/status_im/ui/screens/wallet/account/styles.cljs b/src/status_im/ui/screens/wallet/account/styles.cljs index cd3bfcc45e..add6ca410a 100644 --- a/src/status_im/ui/screens/wallet/account/styles.cljs +++ b/src/status_im/ui/screens/wallet/account/styles.cljs @@ -32,7 +32,7 @@ anim-y {:toValue 0 :duration 200 - :easing (.-ease ^js (animation/easing)) + :easing (.-ease ^js animation/easing) :useNativeDriver true})) (defn bottom-send-recv-buttons-lower [anim-y y] @@ -40,5 +40,5 @@ anim-y {:toValue y :duration 200 - :easing (.-ease ^js (animation/easing)) + :easing (.-ease ^js animation/easing) :useNativeDriver true}))