diff --git a/frontend/src/ts/input/helpers/input-type.ts b/frontend/src/ts/input/helpers/input-type.ts index b520e1c5a..d6ea52b9c 100644 --- a/frontend/src/ts/input/helpers/input-type.ts +++ b/frontend/src/ts/input/helpers/input-type.ts @@ -1,7 +1,7 @@ export type InsertInputType = | "insertText" | "insertCompositionText" - | "insertFromComposition" + | "insertFromComposition" // safari firing a deprecated input type - thanks apple! | "insertLineBreak"; export type DeleteInputType = "deleteWordBackward" | "deleteContentBackward";