diff --git a/src/hooks/useHealthComputer.tsx b/src/hooks/useHealthComputer.tsx index 26532f29..446e4379 100644 --- a/src/hooks/useHealthComputer.tsx +++ b/src/hooks/useHealthComputer.tsx @@ -190,6 +190,7 @@ export default function useHealthComputer(account?: Account) { .toNumber() if (convertedHealth > 100) return 100 + if (convertedHealth === 0 && healthFactor > 1) return 1 if (convertedHealth < 0) return 0 return convertedHealth }, [healthFactor])