fix giant 'type'

Former-commit-id: c2b4a1ec33
This commit is contained in:
Roman Volosovskyi 2016-05-16 16:04:07 +03:00
parent 5c2bc27feb
commit 21f96ae2fb
2 changed files with 2 additions and 11 deletions

View File

@ -6,13 +6,6 @@
text2-color
chat-background
color-black]]))
(def money-input
{:flex 1
:marginLeft 8
:lineHeight 42
:fontSize 32
:fontFamily font
:color :black})
(def command-input-and-suggestions-container
{:flexDirection :column})

View File

@ -1,9 +1,7 @@
(ns syng-im.chat.views.money
(:require
[syng-im.chat.views.command :refer [simple-command-input-view]]
[syng-im.chat.styles.input :as st]))
[syng-im.chat.views.command :refer [simple-command-input-view]]))
(defn money-input-view [command]
[simple-command-input-view command
{:keyboardType :numeric
:style st/money-input}])
{:keyboardType :numeric}])