From 6ed3cd0711e4a59096694c78e0ea90fa05740b7f Mon Sep 17 00:00:00 2001 From: ramistodev <168463169+ramistodev@users.noreply.github.com> Date: Tue, 14 Apr 2026 12:04:18 +0200 Subject: [PATCH] cleanup: remove innecesary logs --- src/components/AlgoViz.tsx | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/components/AlgoViz.tsx b/src/components/AlgoViz.tsx index 4f73293..7c1c291 100644 --- a/src/components/AlgoViz.tsx +++ b/src/components/AlgoViz.tsx @@ -68,8 +68,6 @@ export default function AlgoViz({ locale = 'en', initialAlgorithmId }: AlgoVizPr ? (algorithms.find((a) => a.id === initialAlgorithmId) ?? null) : null - console.log('initialAlgorithm', initialAlgorithm) - const { selectedAlgorithm, steps, @@ -86,22 +84,6 @@ export default function AlgoViz({ locale = 'en', initialAlgorithmId }: AlgoVizPr currentStepData, } = usePlayback(locale, initialAlgorithm) - console.log({ - selectedAlgorithm, - steps, - currentStep, - setCurrentStep, - isPlaying, - speed, - setSpeed, - selectAlgorithm: selectAlgorithmBase, - clearSelection, - stepForward, - stepBackward, - togglePlay, - currentStepData, - }) - const sidebar = useResizablePanel({ maxWidth: SIDEBAR_MAX, collapseThreshold: COLLAPSE_THRESHOLD,