From 402eb8397d986bbccb71a7a55f4e53d58c3aead9 Mon Sep 17 00:00:00 2001 From: Parvesh Monu Date: Thu, 25 Jul 2024 18:22:17 +0530 Subject: [PATCH] fix Issue with scrolling WalletConnect transaction on Android (#20867) --- src/status_im/common/raw_data_block/view.cljs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/status_im/common/raw_data_block/view.cljs b/src/status_im/common/raw_data_block/view.cljs index ec99ecf73d..fcf695fc17 100644 --- a/src/status_im/common/raw_data_block/view.cljs +++ b/src/status_im/common/raw_data_block/view.cljs @@ -1,14 +1,14 @@ (ns status-im.common.raw-data-block.view (:require [quo.core :as quo] - [react-native.core :as rn] + [react-native.gesture :as gesture] [status-im.common.raw-data-block.style :as style])) (defn view [data] - [rn/scroll-view - {:style style/container - :content-container-style style/content} + [gesture/scroll-view + {:style style/container} [quo/text {:size :paragraph-2 + :style style/content :weight :code} data]])