Lint fix
This commit is contained in:
parent
3ef3de81ce
commit
dc532cd9c4
|
@ -7,11 +7,11 @@
|
||||||
(defn- add-shadow
|
(defn- add-shadow
|
||||||
[theme styles]
|
[theme styles]
|
||||||
(cond-> 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-opacity (colors/theme-colors 0.1 0.7 theme)
|
||||||
:shadow-color colors/neutral-100
|
:shadow-color colors/neutral-100
|
||||||
:shadow-offset {:width 0 :height (colors/theme-colors 8 12 theme)})
|
:shadow-offset {:width 0 :height (colors/theme-colors 8 12 theme)})
|
||||||
:else (assoc :elevation 10)))
|
:else (assoc :elevation 10)))
|
||||||
|
|
||||||
(defn inner
|
(defn inner
|
||||||
[top theme]
|
[top theme]
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
(ns status-im.contexts.chat.messenger.composer.mentions.view
|
(ns status-im.contexts.chat.messenger.composer.mentions.view
|
||||||
(:require
|
(:require
|
||||||
[quo.theme]
|
[quo.theme]
|
||||||
[react-native.core :as rn]
|
[react-native.core :as rn]
|
||||||
[react-native.reanimated :as reanimated]
|
[react-native.reanimated :as reanimated]
|
||||||
[react-native.safe-area :as safe-area]
|
[react-native.safe-area :as safe-area]
|
||||||
[status-im.common.contact-list-item.view :as contact-list-item]
|
[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.constants :as constants]
|
||||||
[status-im.contexts.chat.messenger.composer.mentions.style :as style]
|
[status-im.contexts.chat.messenger.composer.mentions.style :as style]
|
||||||
[status-im.contexts.chat.messenger.messages.constants :as messages.constants]
|
[status-im.contexts.chat.messenger.messages.constants :as messages.constants]
|
||||||
[utils.re-frame :as rf]))
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
(defn mention-item
|
(defn mention-item
|
||||||
[user]
|
[user]
|
||||||
|
|
Loading…
Reference in New Issue