From 8189b2ead880463fa70c439d74e4ee070debb387 Mon Sep 17 00:00:00 2001 From: 01zulfi <85733202+01zulfi@users.noreply.github.com> Date: Thu, 13 Nov 2025 09:49:47 +0500 Subject: [PATCH] web: remove spellcheck toggle from note context menu Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- apps/web/src/components/note/index.tsx | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/apps/web/src/components/note/index.tsx b/apps/web/src/components/note/index.tsx index 35cf1e160..ee661f387 100644 --- a/apps/web/src/components/note/index.tsx +++ b/apps/web/src/components/note/index.tsx @@ -421,16 +421,6 @@ export const noteMenuItems: ( onClick: () => store.archive(!note.archived, ...ids), multiSelect: true }, - { - type: "button", - key: "spellcheck", - title: strings.spellCheck(), - isChecked: note.spellcheck, - icon: SpellCheck.path, - isHidden: IS_DESKTOP_APP && !useSpellChecker.getState().enabled, - onClick: () => store.spellcheck(!note.spellcheck, ...ids), - multiSelect: true - }, { key: "sep1", type: "separator" }, { type: "button",