We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 539111c commit b497908Copy full SHA for b497908
ui/hooks/bridge/useTokensWithFiltering.ts
@@ -278,7 +278,8 @@ export const useTokensWithFiltering = (
278
// Yield topTokens from selected chain
279
for (const token_ of topTokens) {
280
const matchedToken =
281
- tokenList?.[token_.address] ?? tokenList?.[token_.address.toLowerCase()];
+ tokenList?.[token_.address] ??
282
+ tokenList?.[token_.address.toLowerCase()];
283
const token = buildTokenData(chainId, matchedToken);
284
if (
285
token &&
0 commit comments