From 2804b6ae56b60ebdc06cf8611e8bffcec65bef79 Mon Sep 17 00:00:00 2001 From: Billy Vong Date: Thu, 16 Dec 2021 17:03:15 -0500 Subject: [PATCH] remove console --- src/Terminal/ui/TerminalInput.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Terminal/ui/TerminalInput.tsx b/src/Terminal/ui/TerminalInput.tsx index 6eb692654..d7a2a7e80 100644 --- a/src/Terminal/ui/TerminalInput.tsx +++ b/src/Terminal/ui/TerminalInput.tsx @@ -89,7 +89,6 @@ export function TerminalInput({ terminal, router, player }: IProps): React.React break; case "deletewordbefore": // Delete rest of word before the cursor for (let delStart = start - 1; delStart > -2; --delStart) { - console.log(delStart, inputText.charAt(delStart), start - 1) if ((inputText.charAt(delStart) === " " || delStart === -1) && delStart !== start - 1) { saveValue(inputText.substr(0, delStart + 1) + inputText.substr(start), () => { // Move cursor to correct location