From 4526d5e715ddc147fde21b5bd5e316573c482772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Goral?= Date: Fri, 30 May 2025 15:36:50 +0200 Subject: [PATCH] Update ToastContext.tsx --- src/context/ToastContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/ToastContext.tsx b/src/context/ToastContext.tsx index e795f506..5af05249 100644 --- a/src/context/ToastContext.tsx +++ b/src/context/ToastContext.tsx @@ -35,7 +35,7 @@ export const ToastProvider: FC<{ children: ReactNode }> = ({ children }) => { setTimeout(() => { setToastContent({ text: message, - duration: duration || 3000, + duration: duration || 8000, }); setToastVisible(true); }, 100);