lets remove the random errors from prod...
This commit is contained in:
parent
a87e3a2886
commit
67b76e41c5
1 changed files with 4 additions and 2 deletions
|
@ -51,8 +51,10 @@ export function Textarea(props: TextareaProps) {
|
|||
return false;
|
||||
};
|
||||
|
||||
const spellingErrors = createMemo(() => spellChecker(value(), props.lang));
|
||||
const grammarErrors = createMemo(() => grammarChecker(value(), props.lang));
|
||||
// const spellingErrors = createMemo(() => spellChecker(value(), props.lang));
|
||||
// const grammarErrors = createMemo(() => grammarChecker(value(), props.lang));
|
||||
const spellingErrors = createMemo(() => []);
|
||||
const grammarErrors = createMemo(() => []);
|
||||
|
||||
const html = createMemo(() => {
|
||||
return value().split('').map((letter, index) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue