We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ada84bc + 5ff1435 commit ca46fa4Copy full SHA for ca46fa4
features/overview/contexts/vault-overview.tsx
@@ -100,7 +100,7 @@ export const VaultOverviewProvider: FC<PropsWithChildren> = ({ children }) => {
100
forcedRebalanceThresholdBP / VAULT_TOTAL_BASIS_POINTS,
101
);
102
const healthFactor = formatPercent.format(healthScore / 100);
103
- const healthFactorNumber = healthScore;
+ const healthFactorNumber = healthScore > 100000 ? Infinity : healthScore;
104
const utilizationRatio = formatPercent.format(
105
overview.utilizationRatio / 100,
106
0 commit comments