From 295e8b4e3f6e6c4de76826ceab2ebe1a4971dd0f Mon Sep 17 00:00:00 2001 From: Hitish Rao P Date: Wed, 2 Oct 2024 09:29:01 +0530 Subject: [PATCH 1/2] Reduce the Notification Message display timings --- src/Utils/Notifications.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Utils/Notifications.js b/src/Utils/Notifications.js index 188a2f7a61b..82b3078b112 100644 --- a/src/Utils/Notifications.js +++ b/src/Utils/Notifications.js @@ -28,6 +28,7 @@ const notify = (text, type) => { sticker: false, }, stack: notifyStack, + delay: 2500, }); notification.refs.elem.addEventListener("click", () => { notification.close(); From a296323ed798cafee3c517e73b4a8f82c9cf5270 Mon Sep 17 00:00:00 2001 From: Hitish Rao P Date: Wed, 2 Oct 2024 13:37:51 +0530 Subject: [PATCH 2/2] Reduce the Notification Message display timings --- src/Utils/Notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils/Notifications.js b/src/Utils/Notifications.js index 82b3078b112..87de7991a6e 100644 --- a/src/Utils/Notifications.js +++ b/src/Utils/Notifications.js @@ -28,7 +28,7 @@ const notify = (text, type) => { sticker: false, }, stack: notifyStack, - delay: 2500, + delay: 3000, }); notification.refs.elem.addEventListener("click", () => { notification.close();