From 8a8dd4e1568dd4513ac8c7d2cc1de21ec787e564 Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Thu, 24 Jul 2025 11:44:30 -0400 Subject: [PATCH] docs(notification-processing): [PM-19877] System Notification Implementation - Removed unnecessary private member variable. --- .../notifications/unsupported-system-notifications.service.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libs/common/src/platform/notifications/unsupported-system-notifications.service.ts b/libs/common/src/platform/notifications/unsupported-system-notifications.service.ts index 32748f9a599..b6e1ae10c40 100644 --- a/libs/common/src/platform/notifications/unsupported-system-notifications.service.ts +++ b/libs/common/src/platform/notifications/unsupported-system-notifications.service.ts @@ -1,14 +1,12 @@ -import { Subject, throwError } from "rxjs"; +import { throwError } from "rxjs"; import { SystemNotificationClearInfo, SystemNotificationCreateInfo, - SystemNotificationEvent, SystemNotificationsService, } from "./system-notifications-service"; export class UnsupportedSystemNotificationsService implements SystemNotificationsService { - private systemNotificationClickedSubject = new Subject(); notificationClicked$ = throwError(() => new Error("Notification clicked is not supported.")); async create(createInfo: SystemNotificationCreateInfo): Promise {