From 4e58dfb5e9d1ebe98b03daefb1b28fc1df7912c8 Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Mon, 21 Jul 2025 15:42:35 -0400 Subject: [PATCH] feat(notification-processing): [PM-19877] System Notification Implementation - Removed comment. --- apps/browser/src/platform/actions/browser-actions.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/browser/src/platform/actions/browser-actions.service.ts b/apps/browser/src/platform/actions/browser-actions.service.ts index 9156f009e8c..47394d4482c 100644 --- a/apps/browser/src/platform/actions/browser-actions.service.ts +++ b/apps/browser/src/platform/actions/browser-actions.service.ts @@ -21,8 +21,6 @@ export class BrowserActionsService implements ActionsService { case DeviceType.ChromeExtension: { const browserAction = BrowserApi.getBrowserAction(); - // We might get back mv2 or mv3 browserAction, only mv3 supports the openPopup function, - // so check for that function existing. if ("openPopup" in browserAction && typeof browserAction.openPopup === "function") { await browserAction.openPopup(); return;