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]