Update AppImage

This commit is contained in:
MacRimi
2025-11-07 20:55:00 +01:00
parent 5dd8b3ee36
commit f064cc89ba
7 changed files with 15 additions and 15 deletions

View File

@@ -123,12 +123,11 @@ export function ProxmoxDashboard() {
// Siempre fetch inicial
fetchSystemData()
// Solo hacer polling si estamos en overview
let interval: ReturnType<typeof setInterval> | null = null
if (activeTab === "overview") {
interval = setInterval(fetchSystemData, 10000)
interval = setInterval(fetchSystemData, 9000) // Cambiado de 10000 a 9000ms
} else {
interval = setInterval(fetchSystemData, 60000)
interval = setInterval(fetchSystemData, 61000) // Cambiado de 60000 a 61000ms
}
return () => {