diff options
-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, |