From e100160bd88e10898bc6e6661b29f87f07a41f27 Mon Sep 17 00:00:00 2001 From: legobt <6wbvkn0j@anonaddy.me> Date: Wed, 23 Oct 2024 13:40:18 +0000 Subject: [PATCH] lint:fix --- app/util/dappTransactions/index.ts | 2 +- e2e/specs/ramps/offramp.spec.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/util/dappTransactions/index.ts b/app/util/dappTransactions/index.ts index bb208a96510..62f438f291a 100644 --- a/app/util/dappTransactions/index.ts +++ b/app/util/dappTransactions/index.ts @@ -139,7 +139,7 @@ const getTokenBalance = async ( } catch (e) { // Don't validate balance if error } -} +}; /** * Validates asset (ERC20) transaction amount diff --git a/e2e/specs/ramps/offramp.spec.js b/e2e/specs/ramps/offramp.spec.js index d990ed0993b..0af763e1fc6 100644 --- a/e2e/specs/ramps/offramp.spec.js +++ b/e2e/specs/ramps/offramp.spec.js @@ -32,7 +32,7 @@ const PaymentMethods = { DEBIT_OR_CREDIT: 'Debit or Credit', INSTANT_ACH_BANK_TRANSFER: 'Insant ACH Bank Transfer', ACH_BANK_TRANSFER: 'ACH Bank Transfer', -} +}; describe(SmokeAssets('Off-Ramp'), () => { beforeAll(async () => { @@ -67,7 +67,7 @@ describe(SmokeAssets('Off-Ramp'), () => { await SelectRegionView.tapRegionOption(Regions.CALIFORNIA); await SelectRegionView.tapContinueButton(); await SelectPaymentMethodView.tapPaymentMethodOption(PaymentMethods.DEBIT_OR_CREDIT); - await SelectPaymentMethodView.tapContinueButton(); + await SelectPaymentMethodView.tapContinueButton(); await Assertions.checkIfVisible(BuildQuoteView.amountToSellLabel); await Assertions.checkIfVisible(BuildQuoteView.getQuotesButton); });