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)})