From d7fe43e74c947ef7b071cf3363aeb99e7ab84861 Mon Sep 17 00:00:00 2001 From: Dmytro Svyrydenko Date: Sun, 22 Sep 2024 18:03:33 +0200 Subject: [PATCH] fix: Notifications auto-closing time --- src/components/notification-center/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/notification-center/index.ts b/src/components/notification-center/index.ts index 265ba432..40ae2f04 100644 --- a/src/components/notification-center/index.ts +++ b/src/components/notification-center/index.ts @@ -51,7 +51,7 @@ export const useNotificationCenter = (): { removeNotification(id); delete notificationIds[id]; - }, notification.visibilityTime ?? 400000); + }, notification.visibilityTime ?? 4000); return id; };