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]])