This commit is contained in:
2025-11-14 02:35:17 +01:00
parent 6f4ff68062
commit a3c5494bf7
53 changed files with 269 additions and 340 deletions
@@ -125,7 +125,7 @@ function CorrespondentsPanel({
if (!usage) {
return '0';
}
const total = typeof usage.total === 'number' ? usage.total : 0;
const total = Number.isFinite(usage.total) ? Number(usage.total) : 0;
return total.toString();
}, []);