diff --git a/frontend/src/components/RepeaterDashboard.tsx b/frontend/src/components/RepeaterDashboard.tsx
index cd9ed8b..400a68c 100644
--- a/frontend/src/components/RepeaterDashboard.tsx
+++ b/frontend/src/components/RepeaterDashboard.tsx
@@ -340,10 +340,7 @@ export function RepeaterDashboard({
/>
{/* Telemetry history chart — full width, below console */}
-
+
)}
diff --git a/frontend/src/components/repeater/RepeaterTelemetryHistoryPane.tsx b/frontend/src/components/repeater/RepeaterTelemetryHistoryPane.tsx
index caf7952..89c5508 100644
--- a/frontend/src/components/repeater/RepeaterTelemetryHistoryPane.tsx
+++ b/frontend/src/components/repeater/RepeaterTelemetryHistoryPane.tsx
@@ -47,16 +47,8 @@ function formatUptime(seconds: number): string {
return `${(seconds / 86400).toFixed(1)}d`;
}
-export function TelemetryHistoryPane({
- entries,
- statusFetchedAt,
-}: {
- entries: TelemetryHistoryEntry[];
- statusFetchedAt?: number | null;
-}) {
+export function TelemetryHistoryPane({ entries }: { entries: TelemetryHistoryEntry[] }) {
const [metric, setMetric] = useState('battery_volts');
- // statusFetchedAt is used to indicate freshness; suppress unused lint
- void statusFetchedAt;
const config = METRIC_CONFIG[metric];