diff --git a/src/renderer/components/toast/index.tsx b/src/renderer/components/toast/index.tsx index 088616f1..c4b37d7f 100644 --- a/src/renderer/components/toast/index.tsx +++ b/src/renderer/components/toast/index.tsx @@ -30,7 +30,7 @@ const showToast = ({ type, ...props }: NotificationProps) => { ? 'Error' : 'Info'; - const defaultDuration = type === 'error' ? 2000 : 1000; + const defaultDuration = type === 'error' ? 5000 : 2000; return showNotification({ autoClose: defaultDuration,