fix: turn off spell check

This commit is contained in:
MAZE 2024-05-03 15:59:19 +04:30
parent d09e598297
commit c66cddc4c9

View file

@ -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}