Skip to content

Commit

Permalink
fix: add missing key in a map()
Browse files Browse the repository at this point in the history
  • Loading branch information
r41ph committed Oct 16, 2024
1 parent b883f3e commit e95cd78
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export const SelectAccountModal = ({
<div className="pb-40">
{accounts.map(account => (
<div
key={account.addr}
className={`flex border-solid border border-grey-300 p-20 mb-10 rounded-[10px] cursor-pointer ${
account.id === selectedAccountId ? 'bg-grey-200' : 'bg-grey-0'
}`}
Expand Down

0 comments on commit e95cd78

Please sign in to comment.