From 8e98aead307bffcfbac8a6e045fca946df80a375 Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Thu, 24 Jul 2025 10:17:20 -0400 Subject: [PATCH] fix(notification-processing): [PM-19877] System Notification Implementation - Fixed bug with not showing body of message. --- .../system-notifications/browser-system-notification.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/browser/src/platform/system-notifications/browser-system-notification.service.ts b/apps/browser/src/platform/system-notifications/browser-system-notification.service.ts index 8346e0dbe7c..1e489b0b8cd 100644 --- a/apps/browser/src/platform/system-notifications/browser-system-notification.service.ts +++ b/apps/browser/src/platform/system-notifications/browser-system-notification.service.ts @@ -28,7 +28,7 @@ export class BrowserSystemNotificationService implements SystemNotificationsServ case DeviceType.ChromeExtension: chrome.notifications.create(createInfo.id, { iconUrl: "https://avatars.githubusercontent.com/u/15990069?s=200", - message: createInfo.title, + message: createInfo.body, type: "basic", title: createInfo.title, buttons: createInfo.buttons.map((value) => {