Skip to content

Commit 96f2300

Browse files
authored
Merge pull request #5887 from parasharrajat/payments-page
2 parents e5fd8d4 + 58ef8c1 commit 96f2300

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/settings/Payments/PaymentsPage.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import {View} from 'react-native';
2+
import {ScrollView} from 'react-native';
33
import {withOnyx} from 'react-native-onyx';
44
import PropTypes from 'prop-types';
55
import PaymentMethodList from './PaymentMethodList';
@@ -115,7 +115,7 @@ class PaymentsPage extends React.Component {
115115
onBackButtonPress={() => Navigation.navigate(ROUTES.SETTINGS)}
116116
onCloseButtonPress={() => Navigation.dismissModal(true)}
117117
/>
118-
<View>
118+
<ScrollView style={styles.flex1}>
119119
{
120120
Permissions.canUseWallet(this.props.betas) && <CurrentWalletBalance />
121121
}
@@ -129,7 +129,7 @@ class PaymentsPage extends React.Component {
129129
style={[styles.flex4]}
130130
isLoadingPayments={this.props.isLoadingPaymentMethods}
131131
/>
132-
</View>
132+
</ScrollView>
133133
<Popover
134134
isVisible={this.state.shouldShowAddPaymentMenu}
135135
onClose={this.hideAddPaymentMenu}

0 commit comments

Comments
 (0)