From c66cddc4c98c19a8c0ef46ed0ee7555a30fd5059 Mon Sep 17 00:00:00 2001 From: MAZE Date: Fri, 3 May 2024 15:59:19 +0430 Subject: [PATCH] fix: turn off spell check --- src/components/toolbox/notepad/notepad.tsx | 1 + 1 file changed, 1 insertion(+) 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}