From fd4e6793f9d2566e12aead0b57203cad60e6868a Mon Sep 17 00:00:00 2001 From: Spaghetti Date: Sun, 7 Dec 2025 22:49:43 +0000 Subject: [PATCH] fix(ui): remove unsupported highlight command --- web/src/components/MemoEditor/Editor/commands.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/web/src/components/MemoEditor/Editor/commands.ts b/web/src/components/MemoEditor/Editor/commands.ts index e07f92cb5..d293601c0 100644 --- a/web/src/components/MemoEditor/Editor/commands.ts +++ b/web/src/components/MemoEditor/Editor/commands.ts @@ -25,9 +25,4 @@ export const editorCommands: Command[] = [ run: () => "| Header | Header |\n| ------ | ------ |\n| Cell | Cell |", cursorOffset: 1, // Places cursor after first "|" to edit first header }, - { - name: "highlight", - run: () => "==text==", - cursorOffset: 2, // Places cursor between "==" markers to type highlighted text - }, ];