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,