From 76b05ace14695aa5951b9b963c3fe1d3927a5048 Mon Sep 17 00:00:00 2001 From: Andreas Coroiu Date: Wed, 1 Oct 2025 13:51:45 +0200 Subject: [PATCH] fix: floating promise --- .../browser-system-notification.service.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 33e60894a54..6150b4d7544 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 @@ -70,8 +70,7 @@ export class BrowserSystemNotificationService implements SystemNotificationsServ } async clear(clearInfo: SystemNotificationClearInfo): Promise { - - chrome.notifications.clear(clearInfo.id); + await chrome.notifications.clear(clearInfo.id); } isSupported(): boolean {