diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts index c9063c7900..47944f46f2 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts @@ -52,9 +52,6 @@ export class UmbSectionElement extends UmbContextConsumerMixin(LitElement) { @state() private _views: Array = []; - private _editors?: Array; - private _editorsSubscription?: Subscription; - private _entityStore?: UmbEntityStore; private _sectionContext?: UmbSectionContext; @@ -192,7 +189,6 @@ export class UmbSectionElement extends UmbContextConsumerMixin(LitElement) { disconnectedCallback(): void { super.disconnectedCallback(); this._treesSubscription?.unsubscribe(); - this._editorsSubscription?.unsubscribe(); this._viewsSubscription?.unsubscribe(); }