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 {