From 0d1d08bab8c7a457ac67e22dbebb8e1a92fd42c2 Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Fri, 25 Jul 2025 16:19:14 -0400 Subject: [PATCH] fix(notification-processing): [PM-19877] System Notification Implementation - Fixed console log. --- apps/browser/src/platform/actions/browser-actions.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/browser/src/platform/actions/browser-actions.service.ts b/apps/browser/src/platform/actions/browser-actions.service.ts index 47394d4482c..112a76cbe3f 100644 --- a/apps/browser/src/platform/actions/browser-actions.service.ts +++ b/apps/browser/src/platform/actions/browser-actions.service.ts @@ -41,7 +41,7 @@ export class BrowserActionsService implements ActionsService { } } catch (e) { this.logService.error( - `Failed to open the popup on ${deviceType} with manifest ${BrowserApi.manifestVersion} and error: ${e}`, + `Failed to open the popup on ${DeviceType[deviceType]} with manifest ${BrowserApi.manifestVersion} and error: ${e}`, ); } }