diff --git a/frontend/src/ts/commandline/commandline.ts b/frontend/src/ts/commandline/commandline.ts index dea576895..f8b0c58e5 100644 --- a/frontend/src/ts/commandline/commandline.ts +++ b/frontend/src/ts/commandline/commandline.ts @@ -436,7 +436,6 @@ async function showCommands(): Promise { } async function updateActiveCommand(): Promise { - console.log("updating active command"); if (isAnimating) return; const elements = [ @@ -486,7 +485,6 @@ function handleInputSubmit(): void { } async function runActiveCommand(): Promise { - console.log("running active command"); if (isAnimating) return; if (activeCommand === null) return; const command = activeCommand;