From e1a42189a6c9fe4b70b7096bd37554a15987889e Mon Sep 17 00:00:00 2001 From: MacRimi Date: Wed, 19 Nov 2025 18:18:47 +0100 Subject: [PATCH] Update system-overview.tsx --- AppImage/components/system-overview.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppImage/components/system-overview.tsx b/AppImage/components/system-overview.tsx index 0a7a7aa..1714735 100644 --- a/AppImage/components/system-overview.tsx +++ b/AppImage/components/system-overview.tsx @@ -676,7 +676,7 @@ export function SystemOverview() { ↓ {networkUnit === "Bytes" ? `${networkTotals.received.toFixed(2)} GB` - : `${(networkTotals.received * 8).toFixed(2)} Gb`} + : formatNetworkTraffic(networkTotals.received * 1024 * 1024 * 1024, 'Bits')} ({getTimeframeLabel(networkTimeframe)}) @@ -685,7 +685,7 @@ export function SystemOverview() { ↑ {networkUnit === "Bytes" ? `${networkTotals.sent.toFixed(2)} GB` - : `${(networkTotals.sent * 8).toFixed(2)} Gb`} + : formatNetworkTraffic(networkTotals.sent * 1024 * 1024 * 1024, 'Bits')} ({getTimeframeLabel(networkTimeframe)})