remove useless block

Former-commit-id: 4ae0236cd0
This commit is contained in:
michaelr 2016-04-04 19:42:56 +03:00
parent 4ea142dd43
commit 78551e0e8d
1 changed files with 1 additions and 2 deletions

View File

@ -32,8 +32,7 @@
(let [input-command-atom (subscribe [:get-input-command])]
(fn []
(let [input-command @input-command-atom]
[view ;; TODO temp to show input above react-native warning
{:style {:marginBottom 50}}
[view
(if input-command
[special-input-view input-command]
[plain-message-input-view])]))))