chore: fix some eslint warnings

This commit is contained in:
2024-01-04 10:43:45 +00:00
parent 2a2c713486
commit 13f4ec3f30
14 changed files with 36 additions and 36 deletions

View File

@ -105,7 +105,7 @@ export default function WalletPage(props: { showHistory: boolean }) {
<div>
<select className="w-max" onChange={e => Wallets.switch(e.target.value)} value={walletState.config?.id}>
{Wallets.list().map(a => {
return <option value={a.id}>{a.info.alias}</option>;
return <option value={a.id} key={a.id}>{a.info.alias}</option>;
})}
</select>
</div>