diff --git a/packages/explorer-ui/components/misc/AssetImage.tsx b/packages/explorer-ui/components/misc/AssetImage.tsx index 570d70429e..5206152f11 100644 --- a/packages/explorer-ui/components/misc/AssetImage.tsx +++ b/packages/explorer-ui/components/misc/AssetImage.tsx @@ -11,7 +11,13 @@ export const AssetImage = ({ tokenAddress, chainId, className }) => {
- +
@@ -29,13 +35,21 @@ export const AssetImage = ({ tokenAddress, chainId, className }) => { className={`inline mr-[.5rem] rounded-full ${className}`} src={t?.icon} alt="" + height={16} + width={16} /> ) } else { return ( // temporary fix until either symbolToToken works better as a function or explorer indexer has the right token addresses - + // { src={chain.chainImg} className={`${imgSize} rounded-full mr-2 inline ${className}`} alt={chain.name} + height={16} + width={16} /> ) } else { diff --git a/packages/explorer-ui/components/misc/ChainInfo.tsx b/packages/explorer-ui/components/misc/ChainInfo.tsx index d494281bba..06a40e0980 100644 --- a/packages/explorer-ui/components/misc/ChainInfo.tsx +++ b/packages/explorer-ui/components/misc/ChainInfo.tsx @@ -45,6 +45,8 @@ export const ChainInfo = ({ className={`inline rounded-full ${imgClassName}`} src={chain?.chainImg} alt={chain?.name} + height={16} + width={16} />