-
Notifications
You must be signed in to change notification settings - Fork 85
Open
Description
The overtype documentation says that the browser spellcheck feature is used, but it is disabled this.textarea.setAttribute('spellcheck', 'false');
I used a workaround to re-activate the spellcheck
const textarea = markdownEditorRef.current?.querySelector("textarea");
if (textarea) {
textarea.setAttribute("spellcheck", "true");
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels