wip: Fix ContainerDashboard

This commit is contained in:
Constantin
2025-09-13 15:49:32 +03:00
parent b40e4f277e
commit 36776353b9
7 changed files with 747 additions and 130 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ function Dashboard({ isOnline }) {
useEffect(() => {
fetchData();
const interval = setInterval(fetchData, 30000); // Refresh every 30 seconds
const interval = setInterval(fetchData, 5000); // Refresh every 30 seconds
return () => clearInterval(interval);
}, [isOnline]);