Skip to content

Commit

Permalink
[PAY-1487] Increase hit slop of mobile dms send button (#3618)
Browse files Browse the repository at this point in the history
  • Loading branch information
dharit-tan authored Jun 16, 2023
1 parent 06dae51 commit 810f0df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/mobile/src/screens/chat-screen/ChatTextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const messages = {
const useStyles = makeStyles(({ spacing, palette, typography }) => ({
composeTextContainer: {
display: 'flex',
alignItems: 'flex-end',
alignItems: 'center',
backgroundColor: palette.neutralLight10,
paddingLeft: spacing(4),
paddingVertical: spacing(1),
Expand Down Expand Up @@ -75,6 +75,7 @@ export const ChatTextInput = ({
const renderIcon = () => (
<Pressable
onPress={handleSubmit}
hitSlop={spacing(2)}
style={({ pressed }) => [
styles.iconCircle,
{
Expand Down

0 comments on commit 810f0df

Please sign in to comment.