From b6ab9caf390b669f3350cbc56b84f6a20149431e Mon Sep 17 00:00:00 2001 From: Ulises M Date: Thu, 17 Oct 2024 23:33:23 -0600 Subject: [PATCH] lint fix --- .../onboarding/syncing/progress/style.cljs | 4 ++-- .../onboarding/syncing/progress/view.cljs | 22 ++++++++++--------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/src/status_im/contexts/onboarding/syncing/progress/style.cljs b/src/status_im/contexts/onboarding/syncing/progress/style.cljs index 682aec7dfb..be0909a6eb 100644 --- a/src/status_im/contexts/onboarding/syncing/progress/style.cljs +++ b/src/status_im/contexts/onboarding/syncing/progress/style.cljs @@ -1,7 +1,7 @@ (ns status-im.contexts.onboarding.syncing.progress.style (:require - [quo.foundations.colors :as colors] - [react-native.safe-area :as safe-area])) + [quo.foundations.colors :as colors] + [react-native.safe-area :as safe-area])) (def absolute-fill {:position :absolute diff --git a/src/status_im/contexts/onboarding/syncing/progress/view.cljs b/src/status_im/contexts/onboarding/syncing/progress/view.cljs index 62bbf23305..58e3425e9b 100644 --- a/src/status_im/contexts/onboarding/syncing/progress/view.cljs +++ b/src/status_im/contexts/onboarding/syncing/progress/view.cljs @@ -15,13 +15,14 @@ (defn page-title [pairing-progress?] - [quo/page-top {:title (i18n/label (if pairing-progress? - :t/sync-devices-title - :t/sync-devices-error-title)) - :description :text - :description-text (i18n/label (if pairing-progress? - :t/sync-devices-sub-title - :t/sync-devices-error-sub-title))}]) + [quo/page-top + {:title (i18n/label (if pairing-progress? + :t/sync-devices-title + :t/sync-devices-error-title)) + :description :text + :description-text (i18n/label (if pairing-progress? + :t/sync-devices-sub-title + :t/sync-devices-error-sub-title))}]) (defn- navigate-to-enter-seed-phrase [] @@ -61,9 +62,10 @@ :button-one-props recovery-phrase-props :button-two-label try-again-label :button-two-props try-again-props})] - [quo/bottom-actions (assoc buttons - :actions number-of-actions - :blur? true)])) + [quo/bottom-actions + (assoc buttons + :actions number-of-actions + :blur? true)])) (defn- illustration [pairing-progress?]