diff --git a/src/components/modals/Popup.tsx b/src/components/modals/Popup.tsx index dff62c4..327ae93 100644 --- a/src/components/modals/Popup.tsx +++ b/src/components/modals/Popup.tsx @@ -16,7 +16,7 @@ function Popup() { useEffect(() => { if (!closed) { - const timer = setTimeout(() => setIsPopupShowed(true), 1000); + const timer = setTimeout(() => setIsPopupShowed(true), 10000); return () => clearTimeout(timer); } }, [setIsPopupShowed, closed]); @@ -44,10 +44,10 @@ function Popup() { Перейти