From 2856a82193616f4a2bdf7b249fe55ad652c49f2e Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Wed, 23 Jul 2025 14:14:53 -0400 Subject: [PATCH] fix(notification-processing): [PM-19877] System Notification Implementation - Fixed linting bug. --- .../notifications/unsupported-system-notifications.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 3877043c4ba..32748f9a599 100644 --- a/libs/common/src/platform/notifications/unsupported-system-notifications.service.ts +++ b/libs/common/src/platform/notifications/unsupported-system-notifications.service.ts @@ -15,7 +15,7 @@ export class UnsupportedSystemNotificationsService implements SystemNotification throw new Error("Create OS Notification unsupported."); } - clear(clearInfo: SystemNotificationClearInfo): undefined { + clear(clearInfo: SystemNotificationClearInfo): Promise { throw new Error("Clear OS Notification unsupported."); }