Skip to content

Commit b497908

Browse files
committed
fix lint
1 parent 539111c commit b497908

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/hooks/bridge/useTokensWithFiltering.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,8 @@ export const useTokensWithFiltering = (
278278
// Yield topTokens from selected chain
279279
for (const token_ of topTokens) {
280280
const matchedToken =
281-
tokenList?.[token_.address] ?? tokenList?.[token_.address.toLowerCase()];
281+
tokenList?.[token_.address] ??
282+
tokenList?.[token_.address.toLowerCase()];
282283
const token = buildTokenData(chainId, matchedToken);
283284
if (
284285
token &&

0 commit comments

Comments
 (0)