Lint fix
This commit is contained in:
parent
3ef3de81ce
commit
dc532cd9c4
|
@ -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]
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue