From dc532cd9c4c46854f3de49be9c91c15527892466 Mon Sep 17 00:00:00 2001 From: Ulises M Date: Tue, 19 Nov 2024 15:59:31 -0600 Subject: [PATCH] Lint fix --- .../messenger/composer/mentions/style.cljs | 8 ++++---- .../chat/messenger/composer/mentions/view.cljs | 18 +++++++++--------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/status_im/contexts/chat/messenger/composer/mentions/style.cljs b/src/status_im/contexts/chat/messenger/composer/mentions/style.cljs index 9e4afc625a..50cffae7b2 100644 --- a/src/status_im/contexts/chat/messenger/composer/mentions/style.cljs +++ b/src/status_im/contexts/chat/messenger/composer/mentions/style.cljs @@ -7,11 +7,11 @@ (defn- add-shadow [theme styles] (cond-> styles - platform/ios? (assoc :shadow-radius (colors/theme-colors 30 50 theme) + platform/ios? (assoc :shadow-radius (colors/theme-colors 30 50 theme) :shadow-opacity (colors/theme-colors 0.1 0.7 theme) - :shadow-color colors/neutral-100 - :shadow-offset {:width 0 :height (colors/theme-colors 8 12 theme)}) - :else (assoc :elevation 10))) + :shadow-color colors/neutral-100 + :shadow-offset {:width 0 :height (colors/theme-colors 8 12 theme)}) + :else (assoc :elevation 10))) (defn inner [top theme] diff --git a/src/status_im/contexts/chat/messenger/composer/mentions/view.cljs b/src/status_im/contexts/chat/messenger/composer/mentions/view.cljs index 27bf4972a1..75a51fcc4c 100644 --- a/src/status_im/contexts/chat/messenger/composer/mentions/view.cljs +++ b/src/status_im/contexts/chat/messenger/composer/mentions/view.cljs @@ -1,14 +1,14 @@ (ns status-im.contexts.chat.messenger.composer.mentions.view (:require - [quo.theme] - [react-native.core :as rn] - [react-native.reanimated :as reanimated] - [react-native.safe-area :as safe-area] - [status-im.common.contact-list-item.view :as contact-list-item] - [status-im.contexts.chat.messenger.composer.constants :as constants] - [status-im.contexts.chat.messenger.composer.mentions.style :as style] - [status-im.contexts.chat.messenger.messages.constants :as messages.constants] - [utils.re-frame :as rf])) + [quo.theme] + [react-native.core :as rn] + [react-native.reanimated :as reanimated] + [react-native.safe-area :as safe-area] + [status-im.common.contact-list-item.view :as contact-list-item] + [status-im.contexts.chat.messenger.composer.constants :as constants] + [status-im.contexts.chat.messenger.composer.mentions.style :as style] + [status-im.contexts.chat.messenger.messages.constants :as messages.constants] + [utils.re-frame :as rf])) (defn mention-item [user]