From 063a6901a61ede9d58bb51eb07d64083bd7b5bbb Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 16 Oct 2024 14:13:54 +0200 Subject: [PATCH] chore: remove console logs --- frontend/src/ts/commandline/commandline.ts | 2 -- 1 file changed, 2 deletions(-) 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;