Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dharmasatrya committed Nov 8, 2022
1 parent 7dddf38 commit f5d6f9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/with_async/payment_method_v2.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const pm = new PaymentMethodV2({});
},
},
});
console.log('created payment method', createdPaymentMethod); // eslint-disable-line no-console
// eslint-disable-next-line no-console
console.log('created payment method', createdPaymentMethod);

const paymentMethodDetailsById = await pm.getPaymentMethodByIdV2({
id: createdPaymentMethod.id,
Expand Down

0 comments on commit f5d6f9e

Please sign in to comment.