Skip to content

Commit

Permalink
[PAY-2429] Add hitslop to stem download row (#7458)
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson authored Feb 6, 2024
1 parent b8f6e7a commit 087f38e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/mobile/src/screens/track-screen/DownloadRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ export const DownloadRow = ({
</Flex>
</Flex>
{hideDownload ? null : (
<PlainButton onPress={() => onDownload({ trackIds: [trackId] })}>
<PlainButton
hitSlop={{ top: 12, left: 8, right: 8, bottom: 12 }}
onPress={() => onDownload({ trackIds: [trackId] })}
>
<Box ph='s' pv='m'>
<IconReceive color='subdued' size='s' />
</Box>
Expand Down

0 comments on commit 087f38e

Please sign in to comment.