From bd754d110345b26eaeefdc204bb840199093c50b Mon Sep 17 00:00:00 2001 From: Ciaran McGhie Date: Tue, 17 Jan 2023 11:10:20 +0000 Subject: [PATCH] chore: 0 decimal places for % target stake column (#2588) --- .../src/app/components/dashboard/market-list/market-list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 '-'; }}