From a9c7c71794044e143d6f317ede39698c1fb17689 Mon Sep 17 00:00:00 2001 From: Abdo Date: Mon, 19 Aug 2024 12:15:14 +0300 Subject: [PATCH] Formatting --- ts/editor/base.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/editor/base.ts b/ts/editor/base.ts index 5123ff6a6..c21a64811 100644 --- a/ts/editor/base.ts +++ b/ts/editor/base.ts @@ -57,17 +57,17 @@ export { editorToolbar } from "./editor-toolbar"; async function setupBrowserEditor(): Promise { await setupI18n({ modules: editorModules }); - mount(BrowserEditor, {target: document.body, props: { uiResolve }}); + mount(BrowserEditor, { target: document.body, props: { uiResolve } }); } async function setupNoteCreator(): Promise { await setupI18n({ modules: editorModules }); - mount(NoteCreator, {target: document.body, props: { uiResolve }}); + mount(NoteCreator, { target: document.body, props: { uiResolve } }); } async function setupReviewerEditor(): Promise { await setupI18n({ modules: editorModules }); - mount(ReviewerEditor, {target: document.body, props: { uiResolve }}); + mount(ReviewerEditor, { target: document.body, props: { uiResolve } }); } export function setupEditor(mode: "add" | "browse" | "review") {