remove some logging

This commit is contained in:
LenAnderson
2024-04-11 14:34:47 -04:00
parent 448b812faa
commit 43dd251ca1
2 changed files with 0 additions and 2 deletions

View File

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