diff --git a/centrifuge-app/src/components/PoolOverview/KeyMetrics.tsx b/centrifuge-app/src/components/PoolOverview/KeyMetrics.tsx index e9a0376013..107302352f 100644 --- a/centrifuge-app/src/components/PoolOverview/KeyMetrics.tsx +++ b/centrifuge-app/src/components/PoolOverview/KeyMetrics.tsx @@ -285,10 +285,15 @@ const AvailableNetworks = ({ poolId }: { poolId: string }) => { const pool = usePool(poolId) const renderTooltipBody = (networkName: string, tranches: Tranche[], baseUrl: string) => { - const links = tranches.map((tranche) => ({ - text: `View Transactions`, - url: `${baseUrl}/token/${tranche.id}`, - })) + const links = tranches + .map( + (tranche) => activeDomains?.data?.find((domain) => domain.trancheTokens[tranche.id])?.trancheTokens[tranche.id] + ) + .filter(Boolean) + .map((tokenAddress) => ({ + text: `View Transactions`, + url: `${baseUrl}token/${tokenAddress}`, + })) return }