chore(monorepo/client): fix non-expected error

This commit is contained in:
Elian Doran 2025-04-18 17:32:36 +03:00
parent fe27eea5ba
commit bc42038e01
No known key found for this signature in database

View File

@ -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);
}