Skip to content

Commit

Permalink
Merge pull request #1140 from 0xminds/patch-5
Browse files Browse the repository at this point in the history
Clarify Comment on Removing Duplicate L1 Tokens Update TokenListTable…
  • Loading branch information
krofax authored Nov 26, 2024
2 parents 3156760 + 9aea8bc commit 555806a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/TokenListTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function TokenListTable({
return a.symbol.localeCompare(b.symbol)
})
.reduce((acc, token) => {
// Remove any duplicate L1 tokens
// Remove duplicate L1 tokens by address
if (acc.some((other) => {
return other.address === token.address
})) {
Expand Down

0 comments on commit 555806a

Please sign in to comment.