Reduce automatic pinging

This commit is contained in:
LukeGus
2025-08-27 11:34:38 -05:00
parent a34c60947d
commit d88c890ba7
3 changed files with 33 additions and 10 deletions

View File

@@ -238,7 +238,7 @@ export function LeftSidebar({
React.useEffect(() => {
fetchHosts();
const interval = setInterval(fetchHosts, 10000);
const interval = setInterval(fetchHosts, 300000); // 5 minutes instead of 10 seconds
return () => clearInterval(interval);
}, [fetchHosts]);