From aefd4676601cc2d1cc034aaf0189790c9d004873 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Sun, 28 Dec 2025 15:33:27 -0500 Subject: [PATCH] fix closing bracket --- src/components/blog/TextEditor.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/blog/TextEditor.tsx b/src/components/blog/TextEditor.tsx index aff3f60..0be0b33 100644 --- a/src/components/blog/TextEditor.tsx +++ b/src/components/blog/TextEditor.tsx @@ -271,9 +271,11 @@ const KEYBOARD_SHORTCUTS: ShortcutCategory[] = [ { keys: "⌥ Tab", keysAlt: "Alt Tab", description: "Accept line" }, { keys: "⇧ Tab", keysAlt: "Shift Tab", description: "Accept full" }, { keys: "ESC", keysAlt: "ESC", description: "Cancel suggestion" }, - { keys: "Swipe →", keysAlt: "Swipe →", description: "Accept full (mobile fullscreen)" } - ] - } + { + keys: "Swipe →", + keysAlt: "Swipe →", + description: "Accept full (mobile fullscreen)" + } ] } ];