diff --git a/apps/liquidity-provision-dashboard/src/app/components/dashboard/market-list/market-list.tsx b/apps/liquidity-provision-dashboard/src/app/components/dashboard/market-list/market-list.tsx index 9ed4581b2..0dd9df147 100644 --- a/apps/liquidity-provision-dashboard/src/app/components/dashboard/market-list/market-list.tsx +++ b/apps/liquidity-provision-dashboard/src/app/components/dashboard/market-list/market-list.tsx @@ -215,7 +215,7 @@ export const MarketList = () => { ) * 100; const display = Number.isNaN(roundedPercentage) ? 'N/A' - : formatNumberPercentage(toBigNum(roundedPercentage, 2)); + : formatNumberPercentage(toBigNum(roundedPercentage, 0), 0); return display; } else return '-'; }}