Skip to content

Commit

Permalink
fix: update key TokenTransaction
Browse files Browse the repository at this point in the history
  • Loading branch information
Tien Nam Dao committed Feb 23, 2023
1 parent 3a01d16 commit 0080a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/tokens/tabs/TokenTransactionTab/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const TokenTransactionTab = ({ token, tokenData }: Props) => {
<div style={{ overflowY: 'auto' }}>
{result.map((item, index) => (
<TokenTransaction
key={`${item.transactionHash}-${item.fromAddress}-${item.toAddress}-${item.tokenSymbol}-${item.amount}`}
key={`${item.transactionHash}-${item.amount}-${index}`}
tokenData={tokenData}
transaction={item}
/>
Expand Down

0 comments on commit 0080a13

Please sign in to comment.