We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad2efb7 + b571f1a commit 7c65d61Copy full SHA for 7c65d61
explorer/src/components/MixNodes/index.tsx
@@ -49,7 +49,7 @@ export function mixNodeResponseItemToMixnodeRowType(item: MixNodeResponseItem):
49
layer: item?.layer || '',
50
profit_percentage: `${profitPercentage}%`,
51
avg_uptime: `${toPercentIntegerString(item.node_performance.last_24h)}%`,
52
- stake_saturation: uncappedSaturation.toFixed(2),
+ stake_saturation: Number(uncappedSaturation.toFixed(2)),
53
operating_cost: `${unymToNym(item.operating_cost?.amount, 6)} NYM`,
54
node_performance: `${toPercentIntegerString(item.node_performance.most_recent)}%`,
55
blacklisted: item.blacklisted,
0 commit comments