diff --git a/src/pages/settings/Payments/PaymentMethodList.js b/src/pages/settings/Payments/PaymentMethodList.js index 11d17fc910bf..6fbcae309a20 100644 --- a/src/pages/settings/Payments/PaymentMethodList.js +++ b/src/pages/settings/Payments/PaymentMethodList.js @@ -118,8 +118,8 @@ class PaymentMethodList extends Component { */ getFilteredPaymentMethods() { - //filter non-billing cards - const filteredCardList = _.filter(this.props.cardList, (card) => !card.additionalData.isBillingCard); + // filter non-billing cards + const filteredCardList = _.filter(this.props.cardList, card => !card.additionalData.isBillingCard); let combinedPaymentMethods = PaymentUtils.formatPaymentMethods(this.props.bankAccountList, filteredCardList, this.props.payPalMeUsername, this.props.userWallet);