diff --git a/src/components/messageStream/utils/formatBytes.ts b/src/components/messageStream/utils/formatBytes.ts index b9d8fb1..09a6d1d 100644 --- a/src/components/messageStream/utils/formatBytes.ts +++ b/src/components/messageStream/utils/formatBytes.ts @@ -6,7 +6,7 @@ export function formatBytes(bytes: number): string { let value = bytes; let unitIndex = 0; while (value >= 1024 && unitIndex < UNITS.length - 1) { - value /= 1024; + value /= 1000; unitIndex += 1; } const rounded =