From 200439abf61d748a26c7e8ac8d8621c02a0cc2f5 Mon Sep 17 00:00:00 2001 From: Daniel Oakman <141111365+danoaky-tiny@users.noreply.github.com> Date: Fri, 16 Feb 2024 14:37:00 +1100 Subject: [PATCH] INT-3287: Added `readonly` to the props that are overridden/unused --- src/main/ts/components/Editor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/ts/components/Editor.tsx b/src/main/ts/components/Editor.tsx index 0e1c2205..6382ee44 100644 --- a/src/main/ts/components/Editor.tsx +++ b/src/main/ts/components/Editor.tsx @@ -15,7 +15,7 @@ export interface IProps { initialValue: string; onEditorChange: (a: string, editor: TinyMCEEditor) => void; value: string; - init: EditorOptions & { selector?: undefined; target?: undefined }; + init: EditorOptions & Partial>; tagName: string; cloudChannel: string; plugins: NonNullable;