feat: disable browser spell check in report editor

- Add spellCheck={false} prop to PlateContent component in Editor.tsx
- Follows established pattern from CodeBlockNode.tsx
- Fixes BUS-1866: Removes red wavy underlines under misspelled words
- Applies globally to all report editor instances

Co-Authored-By: nate@buster.so <nate@buster.so>
This commit is contained in:
Devin AI 2025-09-23 15:22:31 +00:00
parent c5846df7d7
commit 54e76fd486
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ export const Editor = React.forwardRef<HTMLDivElement, EditorProps>(
return (
<PlateContent
ref={ref}
spellCheck={false}
className={cn(
editorVariants({
readOnly,