diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-13 18:25:27 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-04-13 18:25:27 -0400 |
commit | ab3a1bf8c3ad071a7a5142b2e266d4eb39d5e6d6 (patch) | |
tree | 56503447d08e3464f66ccc544b8b6b6ebd3fa18f | |
parent | 2d83d11558fd19c18fba4042c94657c3ef9f0bb5 (diff) |
toggled off feature
-rw-r--r-- | src/components/messages/ChatInput.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/messages/ChatInput.tsx b/src/components/messages/ChatInput.tsx index 2b49295b..36f83012 100644 --- a/src/components/messages/ChatInput.tsx +++ b/src/components/messages/ChatInput.tsx @@ -78,13 +78,14 @@ const ChatInput: React.FC< /> <AutoCompleteInput /> <View style={styles.actionButtons}> + {/* TODO: Not working, toggled off for now */} {/* <TouchableOpacity onPress={openPicker}> */} - <TouchableOpacity onPress={selectImage}> + {/* <TouchableOpacity onPress={selectImage}> <Image style={{width: normalize(23), height: normalize(23)}} source={require('../../assets/images/camera.png')} /> - </TouchableOpacity> + </TouchableOpacity> */} <TouchableOpacity onPress={() => setText('/')}> <Image style={{width: normalize(23), height: normalize(23)}} |