diff --git a/src/components/toolbox/notepad/notepad.tsx b/src/components/toolbox/notepad/notepad.tsx index 5f925bd..6379ee0 100644 --- a/src/components/toolbox/notepad/notepad.tsx +++ b/src/components/toolbox/notepad/notepad.tsx @@ -75,6 +75,7 @@ export function Notepad({ onClose, show }: NotepadProps) { dir="auto" placeholder="What is on your mind?" ref={textareaRef} + spellCheck={false} value={note} onChange={e => write(e.target.value)} onKeyDown={handleKeyDown}