Skip to content

Commit

Permalink
Remove hitSlop property from CurrencyMenu component
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Jan 19, 2025
1 parent 0224e0c commit 90ec133
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions mobile/components/CurrencyMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ const CurrencyMenu = ({
<>
<View style={{ ...styles.container, ...style }}>
<Pressable
hitSlop={20}
onPress={() => setShowMenu((prev) => !prev)}
>
<Text style={styles.text}>{value}</Text>
Expand All @@ -85,7 +84,6 @@ const CurrencyMenu = ({
CURRENCIES.map((currency) => (
<Pressable
key={currency.code}
hitSlop={20}
onPress={async () => {
await StripeService.setCurrency(currency.code)
helper.navigate(route, navigation, true)
Expand Down

0 comments on commit 90ec133

Please sign in to comment.