diff --git a/centrifuge-app/src/components/Tooltips.tsx b/centrifuge-app/src/components/Tooltips.tsx index 94790e92a8..854d2b19c1 100644 --- a/centrifuge-app/src/components/Tooltips.tsx +++ b/centrifuge-app/src/components/Tooltips.tsx @@ -342,6 +342,10 @@ export const tooltipText = { label: 'Expense ratio', body: 'The operating expenses of the fund as a percentage of the total NAV', }, + totalNavMinus: { + label: 'Total NAV', + body: 'Total nav minus accrued fees', + }, } export type TooltipsProps = { diff --git a/centrifuge-app/src/pages/Pool/Assets/index.tsx b/centrifuge-app/src/pages/Pool/Assets/index.tsx index 6647adff56..578a6c9cce 100644 --- a/centrifuge-app/src/pages/Pool/Assets/index.tsx +++ b/centrifuge-app/src/pages/Pool/Assets/index.tsx @@ -81,7 +81,7 @@ export function PoolDetailAssets() { const pageSummaryData: { label: React.ReactNode; value: React.ReactNode; heading?: boolean }[] = [ { - label: `Total NAV (${pool.currency.symbol})`, + label: , value: formatBalance(pool.nav.total.toDecimal()), heading: true, },