diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-23 18:06:06 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-04-23 18:06:06 -0400 |
commit | d1048d1a24416f6b0f9e951817de8c2740506f51 (patch) | |
tree | dac4520ac19a61d43c6ec137bf976a0ac181b3ac /src/components/messages/ChatInput.tsx | |
parent | 1b7e780b756b3a64db5f20d03678fc7aadc3d1d6 (diff) |
fixed linter
Diffstat (limited to 'src/components/messages/ChatInput.tsx')
-rw-r--r-- | src/components/messages/ChatInput.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/messages/ChatInput.tsx b/src/components/messages/ChatInput.tsx index 142c935e..a4ed675b 100644 --- a/src/components/messages/ChatInput.tsx +++ b/src/components/messages/ChatInput.tsx @@ -1,6 +1,5 @@ import React from 'react'; import {Image, StyleSheet, View} from 'react-native'; -import {TouchableOpacity} from 'react-native-gesture-handler'; import {useStore} from 'react-redux'; import { AutoCompleteInput, @@ -33,7 +32,7 @@ const ChatInput: React.FC< > = () => { const state: RootState = useStore().getState(); const avatar = state.user.avatar; - const {sendMessage, text, setText} = useMessageInputContext(); + const {sendMessage, text} = useMessageInputContext(); // const { // setSelectedImages, // selectedImages, |