diff --git a/packages/mobile/src/screens/chat-screen/ChatListScreen.tsx b/packages/mobile/src/screens/chat-screen/ChatListScreen.tsx
index 4b2c17db45..3e427a3516 100644
--- a/packages/mobile/src/screens/chat-screen/ChatListScreen.tsx
+++ b/packages/mobile/src/screens/chat-screen/ChatListScreen.tsx
@@ -2,6 +2,7 @@ import { useEffect } from 'react'
import { chatActions, chatSelectors, Status } from '@audius/common'
import { View, Text } from 'react-native'
+import { TouchableWithoutFeedback } from 'react-native-gesture-handler'
import { useDispatch, useSelector } from 'react-redux'
import IconCompose from 'app/assets/images/iconCompose.svg'
@@ -119,10 +120,9 @@ export const ChatListScreen = () => {
const navigateToChatUserList = () => navigation.navigate('ChatUserList')
const iconCompose = (
-
+
+
+
)
return (
diff --git a/packages/mobile/src/screens/chat-screen/ChatTextInput.tsx b/packages/mobile/src/screens/chat-screen/ChatTextInput.tsx
index bb27667169..8493b13265 100644
--- a/packages/mobile/src/screens/chat-screen/ChatTextInput.tsx
+++ b/packages/mobile/src/screens/chat-screen/ChatTextInput.tsx
@@ -2,6 +2,7 @@ import { useCallback, useState } from 'react'
import { chatActions } from '@audius/common'
import { Platform } from 'react-native'
+import { TouchableWithoutFeedback } from 'react-native-gesture-handler'
import { useDispatch } from 'react-redux'
import IconSend from 'app/assets/images/iconSend.svg'
@@ -62,15 +63,14 @@ export const ChatTextInput = ({ chatId }: ChatTextInputProps) => {
(
- {
- handleSubmit(inputMessage)
- }}
- />
+ handleSubmit(inputMessage)}>
+
+
)}
styles={{
root: styles.composeTextContainer,