Skip to content

Commit

Permalink
fixed linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
techievivek committed Apr 22, 2022
1 parent c52b414 commit 55049de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/settings/Payments/PaymentMethodList.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 55049de

Please sign in to comment.