fix: remove extraneous print statement

This commit is contained in:
Barrett Ruth 2024-06-08 23:18:51 -05:00
parent 277614c2f4
commit 31536ddaf1

View file

@ -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 {