Updated based on feedback

This commit is contained in:
Valtteri Karesto
2022-05-27 10:43:16 +03:00
parent 9a6ef2c393
commit 4472957f5c
2 changed files with 3 additions and 2 deletions

View File

@@ -412,7 +412,7 @@ const Accounts: FC<AccountProps> = (props) => {
overflowY: "auto",
}}
>
{snap.accounts.map((account, index) => (
{snap.accounts.map((account) => (
<Flex
column
key={account.address + account.name}

View File

@@ -16,8 +16,9 @@ const estimateFee = async (tx: Record<string, unknown>, account: IAccount): Prom
}
return null
} catch (err) {
throw Error('Cannot estimate fee');
console.log(err)
return null
}
}