Skip to content

Commit 3d860e3

Browse files
committed
lint
1 parent 1b10f1c commit 3d860e3

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

src/quo2/components/wallet/network_amount/view.cljs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[quo2.components.wallet.network-amount.style :as style]
88
[quo2.foundations.resources :as resources]))
99

10-
(defn- network-amount-internal
10+
(defn- view-internal
1111
[{:keys [amount token theme]}]
1212
[rn/view {:style style/container}
1313
[rn/image
@@ -21,4 +21,4 @@
2121
[rn/view
2222
{:style (style/divider theme)}]])
2323

24-
(def network-amount (quo.theme/with-theme network-amount-internal))
24+
(def view (quo.theme/with-theme view-internal))

src/quo2/core.cljs

+4-4
Original file line numberDiff line numberDiff line change
@@ -284,10 +284,10 @@
284284
(def url-preview-list quo2.components.links.url-preview-list.view/view)
285285
(def link-preview quo2.components.links.link-preview.view/view)
286286

287-
<<<<<<< HEAD
287+
288288
;;;; GRADIENT
289289
(def gradient-cover quo2.components.gradient.gradient-cover.view/view)
290-
=======
290+
291291
;;;; WALLET
292-
(def network-amount quo2.components.wallet.network-amount.view/network-amount)
293-
>>>>>>> 0cde849f5 (feat: network amount comp)
292+
(def network-amount quo2.components.wallet.network-amount.view/view)
293+

src/quo2/core_spec.cljs

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@
4545
[quo2.components.settings.settings-list.component-spec]
4646
[quo2.components.settings.category.component-spec]
4747
[quo2.components.share.share-qr-code.component-spec]
48-
[quo2.components.tags.status-tags-component-spec]))
48+
[quo2.components.tags.status-tags-component-spec]
49+
[quo2.components.wallet.network-amount.component-spec]))

src/status_im2/contexts/quo_preview/main.cljs

+1-4
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,8 @@
100100
[status-im2.contexts.quo-preview.keycard.keycard :as keycard]
101101
[status-im2.contexts.quo-preview.loaders.skeleton :as skeleton]
102102
[status-im2.contexts.quo-preview.community.channel-actions :as channel-actions]
103-
<<<<<<< HEAD
104-
[status-im2.contexts.quo-preview.gradient.gradient-cover :as gradient-cover]))
105-
=======
103+
[status-im2.contexts.quo-preview.gradient.gradient-cover :as gradient-cover]
106104
[status-im2.contexts.quo-preview.wallet.network-amount :as network-amount]))
107-
>>>>>>> 0cde849f5 (feat: network amount comp)
108105

109106
(def screens-categories
110107
{:foundations [{:name :shadows

0 commit comments

Comments
 (0)