From 9e5d29ced651c10fce9f5e0e0d6881d95e568da0 Mon Sep 17 00:00:00 2001 From: Prospector <6166773+Prospector@users.noreply.github.com> Date: Sun, 24 May 2026 12:14:13 -0700 Subject: [PATCH] hotfix --- packages/ui/src/providers/web-notifications.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/providers/web-notifications.ts b/packages/ui/src/providers/web-notifications.ts index 77a95cf19..b9219b2dd 100644 --- a/packages/ui/src/providers/web-notifications.ts +++ b/packages/ui/src/providers/web-notifications.ts @@ -93,7 +93,7 @@ export abstract class AbstractWebNotificationManager { if (notification.autoCloseMs === null) return - const delay = notification.autoCloseMs ?? DEFAULT_AUTO_DISMISS_DELAY_MS + const delay = notification.autoCloseMs ?? this.DEFAULT_AUTO_DISMISS_DELAY_MS notification.timer = setTimeout(() => { this.removeNotification(notification.id)