lets remove the random errors from prod...

This commit is contained in:
Chris Kruining 2025-02-12 09:44:39 +11:00
parent a87e3a2886
commit 67b76e41c5
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -51,8 +51,10 @@ export function Textarea(props: TextareaProps) {
return false; return false;
}; };
const spellingErrors = createMemo(() => spellChecker(value(), props.lang)); // const spellingErrors = createMemo(() => spellChecker(value(), props.lang));
const grammarErrors = createMemo(() => grammarChecker(value(), props.lang)); // const grammarErrors = createMemo(() => grammarChecker(value(), props.lang));
const spellingErrors = createMemo(() => []);
const grammarErrors = createMemo(() => []);
const html = createMemo(() => { const html = createMemo(() => {
return value().split('').map((letter, index) => { return value().split('').map((letter, index) => {