From 1f86e7e5511bff9d24d2b7061ee08f783a88e21e Mon Sep 17 00:00:00 2001 From: apmanager <121115177+apmanager001@users.noreply.github.com> Date: Sun, 17 Nov 2024 03:50:40 -0500 Subject: [PATCH] clean: remove console log. removed this console log which was automatically being logged from the last update "console.log("panelColorsObject", panelColorsObject)" --- core/src/SVG.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/SVG.tsx b/core/src/SVG.tsx index cd3d30db..e3604add 100644 --- a/core/src/SVG.tsx +++ b/core/src/SVG.tsx @@ -57,7 +57,6 @@ export default function SVG(props: SVGProps) { const maxCount = Math.max(...value.map(item => item.count), 0); const panelColorsObject = Array.isArray(panelColors) ? convertPanelColors(panelColors, maxCount) : panelColors; - console.log("panelColorsObject", panelColorsObject) const [gridNum, setGridNum] = useState(0); const [leftPad, setLeftPad] = useState(!!weekLabels ? 28 : 5);