File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/pages/settings/Payments Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
- import { View } from 'react-native' ;
2
+ import { ScrollView } from 'react-native' ;
3
3
import { withOnyx } from 'react-native-onyx' ;
4
4
import PropTypes from 'prop-types' ;
5
5
import PaymentMethodList from './PaymentMethodList' ;
@@ -115,7 +115,7 @@ class PaymentsPage extends React.Component {
115
115
onBackButtonPress = { ( ) => Navigation . navigate ( ROUTES . SETTINGS ) }
116
116
onCloseButtonPress = { ( ) => Navigation . dismissModal ( true ) }
117
117
/>
118
- < View >
118
+ < ScrollView style = { styles . flex1 } >
119
119
{
120
120
Permissions . canUseWallet ( this . props . betas ) && < CurrentWalletBalance />
121
121
}
@@ -129,7 +129,7 @@ class PaymentsPage extends React.Component {
129
129
style = { [ styles . flex4 ] }
130
130
isLoadingPayments = { this . props . isLoadingPaymentMethods }
131
131
/>
132
- </ View >
132
+ </ ScrollView >
133
133
< Popover
134
134
isVisible = { this . state . shouldShowAddPaymentMenu }
135
135
onClose = { this . hideAddPaymentMenu }
You can’t perform that action at this time.
0 commit comments