From 870933f38967599e5c5f7d5b6394e1eefac4eeb9 Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 18 May 2025 20:09:09 +0200 Subject: [PATCH] Remove debug log statement from HistoryChartsContent component --- frontend/src/components/HistoryCharts.jsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/src/components/HistoryCharts.jsx b/frontend/src/components/HistoryCharts.jsx index e534600..97831f0 100644 --- a/frontend/src/components/HistoryCharts.jsx +++ b/frontend/src/components/HistoryCharts.jsx @@ -72,9 +72,6 @@ const HistoryChartsContent = () => { } }); - - console.log("Grouped data:", grouped); - const sortAndExtract = (entries) => { const sorted = entries.sort((a, b) => a.timestamp - b.timestamp);