From 0349b0ed3d772d71a0cfa6451655d18a965227b9 Mon Sep 17 00:00:00 2001 From: Shivek Khurana Date: Tue, 30 Jan 2024 08:32:20 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A1=20Don't=20scroll=20on=20press=20(#?= =?UTF-8?q?18662)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Hack fix - Scroll on press breaks something with FlatList - Which causes some items to not render - Could be related to scroll view inside scroll view - But fixing this bug by compromising the UX a tiny bit --- .../contexts/wallet/send/select_address/view.cljs | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/status_im/contexts/wallet/send/select_address/view.cljs b/src/status_im/contexts/wallet/send/select_address/view.cljs index 066439048a..985de8b4cb 100644 --- a/src/status_im/contexts/wallet/send/select_address/view.cljs +++ b/src/status_im/contexts/wallet/send/select_address/view.cljs @@ -168,14 +168,13 @@ [local-suggestions-list]]] [:<> [quo/tabs - {:style style/tabs - :container-style style/tabs-content - :size 32 - :default-active selected-tab - :data tabs-data - :scrollable? true - :scroll-on-press? true - :on-change on-change-tab}] + {:style style/tabs + :container-style style/tabs-content + :size 32 + :default-active selected-tab + :data tabs-data + :scrollable? true + :on-change on-change-tab}] [tabs/view {:selected-tab selected-tab}]])])))) (defn view