This commit is contained in:
2025-12-04 17:20:45 +01:00
parent 834d4f641b
commit d06fc133e7
16 changed files with 44 additions and 69 deletions
@@ -111,11 +111,7 @@ function CorrespondentsPanel({
);
const renderUsage = useCallback((correspondent: Correspondent) => {
const count = correspondent.usage_count;
if (count == null || !Number.isFinite(count)) {
return '0';
}
return count.toString();
return correspondent.usage_count;
}, []);
return (