diff --git a/ui/app/peers/[peerName]/lagGraph.tsx b/ui/app/peers/[peerName]/lagGraph.tsx
index 82f0ed9aae..b495aaf6f3 100644
--- a/ui/app/peers/[peerName]/lagGraph.tsx
+++ b/ui/app/peers/[peerName]/lagGraph.tsx
@@ -40,7 +40,7 @@ function LagGraph({ slotNames }: { slotNames: string[] }) {
]);
return lagDataDot.map((data) => ({
time: formatGraphLabel(new Date(data[0]!), timeSince),
- 'Lag in MB': data[1],
+ 'Lag in GB': parseInt(data[1] || '0', 10) / 1000,
}));
}, [lagPoints, timeSince]);
@@ -108,8 +108,9 @@ function LagGraph({ slotNames }: { slotNames: string[] }) {