Skip to content

Commit c434b92

Browse files
committed
#1 Fixed token icons
1 parent 28b6fd3 commit c434b92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/Explorer/TokenSymbol.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ export const TokenSymbol = observer((props: TokenSymbolProps) => {
2828
tokens.fetchStatus !== 'init' &&
2929
tokens.fullTokensList.find(
3030
t =>
31-
t.erc20Address.toLowerCase() === erc20Address.toLowerCase() ||
32-
t.hrc20Address.toLowerCase() === hrc20Address.toLowerCase() ||
33-
(t.network === network && t.type === token),
31+
(t.erc20Address.toLowerCase() === erc20Address.toLowerCase() ||
32+
t.hrc20Address.toLowerCase() === hrc20Address.toLowerCase()) &&
33+
network === t.network,
3434
)
3535
);
3636
}, [

0 commit comments

Comments
 (0)