1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 19:53:59 +00:00

feat(notification-processing): [PM-19877] System Notification Implementation - Removed comment.

This commit is contained in:
Patrick Pimentel
2025-07-21 15:42:35 -04:00
parent 5d01cd4309
commit 4e58dfb5e9

View File

@@ -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;