From eba41f62546f451adc975364ebac225724aaf0f3 Mon Sep 17 00:00:00 2001 From: Dmytro Svyrydenko Date: Sun, 22 Sep 2024 18:03:11 +0200 Subject: [PATCH 1/2] chore: bump backend --- backend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend b/backend index 69c05d7..77df742 160000 --- a/backend +++ b/backend @@ -1 +1 @@ -Subproject commit 69c05d73f9007f97a3778e00e1080c21f1904de7 +Subproject commit 77df74279c6fa56d8e58c370485e9e87cb865265 From d7fe43e74c947ef7b071cf3363aeb99e7ab84861 Mon Sep 17 00:00:00 2001 From: Dmytro Svyrydenko Date: Sun, 22 Sep 2024 18:03:33 +0200 Subject: [PATCH 2/2] 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 265ba43..40ae2f0 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; };