From eba65245fcebfdbeca3a1745767efb417c2c2366 Mon Sep 17 00:00:00 2001 From: Aurora Lahtela <24460436+AuroraLS3@users.noreply.github.com> Date: Mon, 5 Sep 2022 17:06:03 +0300 Subject: [PATCH] Remove debug console.log from code --- Plan/react/dashboard/src/components/graphs/LineGraph.js | 1 - Plan/react/dashboard/src/components/graphs/PlayerbaseGraph.js | 1 - 2 files changed, 2 deletions(-) diff --git a/Plan/react/dashboard/src/components/graphs/LineGraph.js b/Plan/react/dashboard/src/components/graphs/LineGraph.js index 46d90fb38..6d05db467 100644 --- a/Plan/react/dashboard/src/components/graphs/LineGraph.js +++ b/Plan/react/dashboard/src/components/graphs/LineGraph.js @@ -9,7 +9,6 @@ import {useTranslation} from "react-i18next"; const LineGraph = ({id, series}) => { const {t} = useTranslation() const {graphTheming, nightModeEnabled} = useTheme(); - console.log(series) useEffect(() => { NoDataDisplay(Highcharts); diff --git a/Plan/react/dashboard/src/components/graphs/PlayerbaseGraph.js b/Plan/react/dashboard/src/components/graphs/PlayerbaseGraph.js index 9927643bd..62968dc8f 100644 --- a/Plan/react/dashboard/src/components/graphs/PlayerbaseGraph.js +++ b/Plan/react/dashboard/src/components/graphs/PlayerbaseGraph.js @@ -7,7 +7,6 @@ import {withReducedSaturation} from "../../util/colors"; import Accessibility from "highcharts/modules/accessibility"; const PlayerbaseGraph = ({data}) => { - console.log(data); const {t} = useTranslation() const {nightModeEnabled, graphTheming} = useTheme();