diff --git a/app/assets/javascripts/components/NotesOptions/NotesOptions.tsx b/app/assets/javascripts/components/NotesOptions/NotesOptions.tsx index 67b85ade949..c0d2467d1bd 100644 --- a/app/assets/javascripts/components/NotesOptions/NotesOptions.tsx +++ b/app/assets/javascripts/components/NotesOptions/NotesOptions.tsx @@ -149,8 +149,7 @@ const SpellcheckOptions: FunctionComponent<{ }> = ({ appState, note }) => { const editor = appState.application.componentManager.editorForNote(note); const spellcheckControllable = Boolean( - !editor || - appState.application.getFeature(editor.identifier)?.spellcheckControl + !editor || editor.package_info.spellcheckControl ); const noteSpellcheck = !spellcheckControllable ? true