chore: 0 decimal places for % target stake column (#2588)
This commit is contained in:
parent
e362d06b5a
commit
bd754d1103
@ -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 '-';
|
||||
}}
|
||||
|
Loading…
Reference in New Issue
Block a user