From 81237e8688b7becb964d8203ecb4905f69ec70fa Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 1 Nov 2021 23:27:22 -0700 Subject: [PATCH] Increase info notification timeout 1500 -> 2000 --- src/components/shared/toast.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/toast.ts b/src/components/shared/toast.ts index 6df328b..c6d6dbb 100644 --- a/src/components/shared/toast.ts +++ b/src/components/shared/toast.ts @@ -8,6 +8,6 @@ export const notifyToast = ( Notification[type]({ title: message, description, - duration: type === 'info' ? 1500 : type === 'success' ? 2500 : 3000, + duration: type === 'info' ? 2000 : type === 'success' ? 2500 : 3000, }); };