We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2c0b41 commit 0c06c6cCopy full SHA for 0c06c6c
lib/token/tokenLogos.ts
@@ -1,3 +1,4 @@
1
export const TOKEN_LOGOS: Record<string, string> = {
2
- '0x7A9ab9D0E2ca7472d1339F082F79F2F712F8Ebc9': 'tokens/fusd',
+ '0x7a9ab9d0e2ca7472d1339f082f79f2f712f8ebc9': 'tokens/fusd',
3
+ '0x9d4103b780eefe35429110fab1e9acc8af1ae466': 'tokens/fusd',
4
};
ui/shared/entities/token/TokenEntity.tsx
@@ -48,7 +48,7 @@ const Icon = (props: IconProps) => {
48
return <Skeleton { ...styles } className={ props.className }/>;
49
}
50
51
- const tokenIcon = TOKEN_LOGOS?.[props.token.address] as IconName || undefined;
+ const tokenIcon = TOKEN_LOGOS?.[props.token.address.toLowerCase()] as IconName || undefined;
52
53
return (
54
<Image
0 commit comments