From bc42038e011cfd2842e2233c1f83d17ec7745323 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 18 Apr 2025 17:32:36 +0300 Subject: [PATCH] chore(monorepo/client): fix non-expected error --- apps/client/src/widgets/type_widgets/editable_text.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/type_widgets/editable_text.ts b/apps/client/src/widgets/type_widgets/editable_text.ts index edefbcdcd..f8c85d173 100644 --- a/apps/client/src/widgets/type_widgets/editable_text.ts +++ b/apps/client/src/widgets/type_widgets/editable_text.ts @@ -276,7 +276,7 @@ export default class EditableTextTypeWidget extends AbstractTextTypeWidget { editor.model.document.on("change:data", () => this.spacedUpdate.scheduleUpdate()); if (glob.isDev && ENABLE_INSPECTOR) { - //@ts-expect-error TODO: Check if this still works. + // TODO: Check if this still works. await import(/* webpackIgnore: true */ "../../../libraries/ckeditor/inspector.js"); CKEditorInspector.attach(editor); }