increase refresh rate

This commit is contained in:
miloschwartz
2026-04-26 16:57:10 -07:00
parent 6befdfe01e
commit 06af53c4d6
4 changed files with 12 additions and 6 deletions

View File

@@ -166,7 +166,7 @@ export default function HealthChecksTable({
useEffect(() => {
const interval = setInterval(() => {
router.refresh();
}, 10_000);
}, 30_000);
return () => clearInterval(interval);
}, [router]);