diff --git a/app/components/form.tsx b/app/components/form.tsx index c3a8715f9..8b9507e2a 100644 --- a/app/components/form.tsx +++ b/app/components/form.tsx @@ -681,7 +681,9 @@ const keyDownHandlers = ( { key: "b", wrapStart: "**", wrapEnd: "**" }, { key: "i", wrapStart: "_", wrapEnd: "_" }, { key: "u", wrapStart: "", wrapEnd: "" }, - ] satisfies KeyDownHandlerProps[] + { key: "s", wrapStart: "~~", wrapEnd: "~~" }, + // Would be better to use `satisfies` here, but it's resulting in syntax errors + ] as KeyDownHandlerProps[] ).map(({ key, wrapStart, wrapEnd }) => { return makeKeyDownHandler({ key,