Skip to content

Commit

Permalink
fix(send): allow scroll on Review screen (#2381)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwltr authored Nov 29, 2024
1 parent 958a62e commit 8d7c662
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/screens/Wallets/Send/ReviewAndSend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import React, {
} from 'react';
import { StyleSheet, View, TouchableOpacity, Keyboard } from 'react-native';
import { TInvoice } from '@synonymdev/react-native-ldk';
import { BottomSheetScrollView } from '@gorhom/bottom-sheet';
import { useTranslation } from 'react-i18next';
import { validateTransaction } from 'beignet';

Expand Down Expand Up @@ -567,7 +568,7 @@ const ReviewAndSend = ({
<>
<GradientView style={styles.container}>
<BottomSheetNavigationHeader title={t('send_review')} />
<View style={styles.content}>
<BottomSheetScrollView style={styles.content}>
<AmountToggle
style={styles.amountToggle}
amount={amount}
Expand Down Expand Up @@ -721,7 +722,7 @@ const ReviewAndSend = ({
onConfirm={onSwipeToPay}
/>
</View>
</View>
</BottomSheetScrollView>

<Dialog
visible={showDialog1}
Expand Down

0 comments on commit 8d7c662

Please sign in to comment.