diff --git a/ui/pages/asset/components/asset-page.tsx b/ui/pages/asset/components/asset-page.tsx index 79cf2510f015..aef098bfd9d2 100644 --- a/ui/pages/asset/components/asset-page.tsx +++ b/ui/pages/asset/components/asset-page.tsx @@ -75,7 +75,7 @@ export type Asset = ( /** The number of decimal places to move left when displaying balances */ decimals: number; /** An array of token list sources the asset appears in, e.g. [1inch,Sushiswap] */ - aggregators?: []; + aggregators?: string[]; } ) & { /** The hexadecimal chain id */ @@ -332,7 +332,13 @@ const AssetPage = ({ > {t('tokenList')} - {asset.aggregators.join(', ')} + + {asset.aggregators + .map((agg) => + agg.replace(/^metamask$/iu, 'MetaMask'), + ) + .join(', ')} + )}