diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index 8e00cfbd..c19eccc4 100644 --- a/AppImage/components/proxmox-dashboard.tsx +++ b/AppImage/components/proxmox-dashboard.tsx @@ -74,7 +74,6 @@ export function ProxmoxDashboard() { serverName: "Loading...", nodeId: "Loading...", }) - const [isInitialLoading, setIsInitialLoading] = useState(true) const [isRefreshing, setIsRefreshing] = useState(false) const [isServerConnected, setIsServerConnected] = useState(true) const [componentKey, setComponentKey] = useState(0) @@ -193,8 +192,8 @@ export function ProxmoxDashboard() { }, []) useEffect(() => { - // Siempre fetch inicial — mark loading done when system data arrives - fetchSystemData().finally(() => setIsInitialLoading(false)) + // Siempre fetch inicial + fetchSystemData() fetchHealthInfoCount() fetchUpdateStatus() @@ -373,21 +372,6 @@ export function ProxmoxDashboard() { } } - if (isInitialLoading) { - return ( -
Connecting to server and fetching system status
-Fetching system status and metrics