Skip to content

Commit b1223c4

Browse files
authored
fix: Disable spell checking on task creation and chat box (#608)
1 parent 026230f commit b1223c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/twig/src/renderer/features/message-editor/tiptap/useTiptapEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export function useTiptapEditor(options: UseTiptapEditorOptions) {
9898
editable: !disabled,
9999
autofocus: autoFocus ? "end" : false,
100100
editorProps: {
101-
attributes: { class: EDITOR_CLASS },
101+
attributes: { class: EDITOR_CLASS, spellcheck: "false" },
102102
handleKeyDown: (view, event) => {
103103
if (event.key === "Enter") {
104104
const sendMessagesWith =

0 commit comments

Comments
 (0)