diff --git a/public/scripts/slash-commands.js b/public/scripts/slash-commands.js index a276cbb5d..5fe0ba820 100644 --- a/public/scripts/slash-commands.js +++ b/public/scripts/slash-commands.js @@ -1863,7 +1863,6 @@ export function setSlashCommandAutoComplete(textarea, isFloating = false) { consecutive.push(current); } consecutive.sort((a,b)=>b.length - a.length); - console.log({ name, parts, start, consecutive, longestConsecutive:consecutive[0]?.length ?? 0 }); return { name, start, longestConsecutive:consecutive[0]?.length ?? 0 }; }; const fuzzyScoreCompare = (a, b) => { diff --git a/public/scripts/slash-commands/SlashCommandParser.js b/public/scripts/slash-commands/SlashCommandParser.js index 4db7958ef..d6af05bce 100644 --- a/public/scripts/slash-commands/SlashCommandParser.js +++ b/public/scripts/slash-commands/SlashCommandParser.js @@ -202,7 +202,6 @@ export class SlashCommandParser { this.scope = null; this.commandIndex = []; const closure = this.parseClosure(); - console.log('[STS]', closure); closure.keptText = this.keptText; return closure; }