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, }); };