From 794271ac1782f1cd26755400316da15a1ec84d06 Mon Sep 17 00:00:00 2001 From: Vipin Chaudhary Date: Wed, 1 Oct 2025 16:24:58 +0530 Subject: [PATCH] fix-config_types (#7886) --- packages/editor/src/core/types/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/editor/src/core/types/config.ts b/packages/editor/src/core/types/config.ts index b7fe70bc5..dda8b45a3 100644 --- a/packages/editor/src/core/types/config.ts +++ b/packages/editor/src/core/types/config.ts @@ -17,8 +17,8 @@ export type TFileHandler = { * @example enter 5242880(5 * 1024 * 1024) for 5MB */ maxFileSize: number; - } & TExtendedFileHandler; -}; + }; +} & TExtendedFileHandler; export type TEditorFontStyle = "sans-serif" | "serif" | "monospace";