From b8907c3d8754945b213ad798e8954a9b63314eba Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 13 Feb 2024 10:52:24 +0100 Subject: [PATCH] linting --- libs/remix-ui/run-tab/src/lib/actions/account.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/remix-ui/run-tab/src/lib/actions/account.ts b/libs/remix-ui/run-tab/src/lib/actions/account.ts index f96200f77a..e210cfe48c 100644 --- a/libs/remix-ui/run-tab/src/lib/actions/account.ts +++ b/libs/remix-ui/run-tab/src/lib/actions/account.ts @@ -23,9 +23,8 @@ export const fillAccountsList = async (plugin: RunTab, dispatch: React.Dispatch< if (!accounts) accounts = [] const loadedAccounts = {} - - for (const account of accounts) { + for (const account of accounts) { const balance = await plugin.blockchain.getBalanceInEther(account) loadedAccounts[account] = shortenAddress(account, balance) }