diff --git a/centrifuge-app/src/pages/Pool/Assets/index.tsx b/centrifuge-app/src/pages/Pool/Assets/index.tsx index 7a4141ef0..0706971fb 100644 --- a/centrifuge-app/src/pages/Pool/Assets/index.tsx +++ b/centrifuge-app/src/pages/Pool/Assets/index.tsx @@ -85,13 +85,10 @@ export function PoolDetailAssets() { Dec(0) ) - const total = isTinlakePool ? pool.nav.total : pool.reserve.total.toDecimal().add(offchainReserve).add(totalAssets) - const totalNAV = isTinlakePool ? pool.nav.total : Dec(total as any).sub(pool.fees.totalPending.toDecimal()) - const pageSummaryData: { label: React.ReactNode; value: React.ReactNode; heading?: boolean }[] = [ { label: `Total NAV (${pool.currency.symbol})`, - value: formatBalance(totalNAV), + value: formatBalance(pool.nav.total), heading: true, }, { @@ -118,7 +115,7 @@ export function PoolDetailAssets() { }, { label: `Total pending fees (${pool.currency.symbol})`, - value: `${pool.fees.totalPaid.isZero() ? '' : '-'}${formatBalance(pool.fees.totalPaid)}`, + value: `${pool.fees.totalPending.isZero() ? '' : formatBalance(pool.fees.totalPending)}`, heading: false, }, ]