remove unused

This commit is contained in:
Mads Rasmussen
2022-10-07 15:53:53 +02:00
parent 5e99d6aec7
commit e4558164e8

View File

@@ -52,9 +52,6 @@ export class UmbSectionElement extends UmbContextConsumerMixin(LitElement) {
@state()
private _views: Array<ManifestSectionView> = [];
private _editors?: Array<ManifestEditor>;
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();
}