From 31536ddaf1fafbf0c28e11ee8e96f3329632d1e3 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sat, 8 Jun 2024 23:18:51 -0500 Subject: [PATCH] fix: remove extraneous print statement --- scripts/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/index.js b/scripts/index.js index 72706b5..380da68 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -28,7 +28,6 @@ function clearPrompt(delay, callback) { function removeChar() { if (i++ < topicLength) { - console.log("clearing char"); terminalPrompt.textContent = terminalPrompt.textContent.slice(0, -1); setTimeout(removeChar, delay / topicLength); } else {