From 70f16e21c7acd18ecf8a60e7961a61ed4b10eba4 Mon Sep 17 00:00:00 2001 From: FOLX Bot Date: Sun, 16 Aug 2026 21:50:05 +0200 Subject: [PATCH] Odlocitev o praznem oglasu po 3 s namesto 6 s --- client/src/components/adsense.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/adsense.tsx b/client/src/components/adsense.tsx index dc3e6c0..e9d8b7d 100644 --- a/client/src/components/adsense.tsx +++ b/client/src/components/adsense.tsx @@ -64,7 +64,7 @@ export default function AdSense({ }; const obs = new MutationObserver(check); obs.observe(ins, { attributes: true, childList: true, subtree: true, attributeFilter: ["data-ad-status", "style"] }); - const timer = setTimeout(() => decide(hasFrame()), 6000); + const timer = setTimeout(() => decide(hasFrame()), 3000); check(); return () => { obs.disconnect(); clearTimeout(timer); }; }, []);