From 02a0b97392a37cd8f730edffd13070272088b5b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Tue, 20 Dec 2022 14:31:18 +0100 Subject: [PATCH] remove notification service --- .../shared/workspace-content/workspace-content.element.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-content/workspace-content.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-content/workspace-content.element.ts index 4048ffa956..8b531043bc 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-content/workspace-content.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/shared/workspace-content/workspace-content.element.ts @@ -68,17 +68,12 @@ export class UmbWorkspaceContentElement extends UmbContextProviderMixin( @state() _content?: DocumentDetails | MediaDetails; - // TODO: remove notification service. - private _notificationService?: UmbNotificationService; private _workspaceContext?: UmbWorkspaceDocumentContext; constructor() { super(); - this.consumeContext('umbNotificationService', (instance) => { - this._notificationService = instance; - }); this.consumeContext('umbWorkspaceContext', (instance) => { this._workspaceContext = instance; this._observeWorkspace();