chore: remove console logs

This commit is contained in:
Miodec 2024-10-16 14:13:54 +02:00
parent 0a285641b2
commit 063a6901a6

View file

@ -436,7 +436,6 @@ async function showCommands(): Promise<void> {
}
async function updateActiveCommand(): Promise<void> {
console.log("updating active command");
if (isAnimating) return;
const elements = [
@ -486,7 +485,6 @@ function handleInputSubmit(): void {
}
async function runActiveCommand(): Promise<void> {
console.log("running active command");
if (isAnimating) return;
if (activeCommand === null) return;
const command = activeCommand;