From d617513fcf41729214930b0e51fbe5e9d79ffe77 Mon Sep 17 00:00:00 2001 From: Miodec Date: Sun, 23 Nov 2025 19:07:22 +0100 Subject: [PATCH] chore: add comment --- frontend/src/ts/input/helpers/input-type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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";