From f5d6f9ee9660edd84aec02f4351e4b885cbca4aa Mon Sep 17 00:00:00 2001 From: Dharnit <85389770+dharmasatrya@users.noreply.github.com> Date: Tue, 8 Nov 2022 14:33:03 +0700 Subject: [PATCH] fix lint --- examples/with_async/payment_method_v2.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/with_async/payment_method_v2.js b/examples/with_async/payment_method_v2.js index c64724b..b50cc49 100644 --- a/examples/with_async/payment_method_v2.js +++ b/examples/with_async/payment_method_v2.js @@ -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,