diff --git a/AppImage/app/page.tsx b/AppImage/app/page.tsx index c4f37365..029d59c1 100644 --- a/AppImage/app/page.tsx +++ b/AppImage/app/page.tsx @@ -31,8 +31,6 @@ export default function Home() { }) const data = await response.json() - console.log("[v0] Auth status:", data) - const authenticated = data.auth_enabled ? data.authenticated : true setAuthStatus({ @@ -63,9 +61,13 @@ export default function Home() { if (authStatus.loading) { return (
-
-
-

Loading...

+
+
+
+
+
+
Loading...
+

Connecting to ProxMenux Monitor

) diff --git a/AppImage/components/hardware.tsx b/AppImage/components/hardware.tsx index 2b67ce35..e4c3e509 100644 --- a/AppImage/components/hardware.tsx +++ b/AppImage/components/hardware.tsx @@ -329,10 +329,13 @@ export default function Hardware() { if (swrLoading) { return ( -
-
-
Loading hardware data...
+
+
+
+
+
Loading hardware data...
+

Detecting CPU, GPU, storage and PCI devices

) } diff --git a/AppImage/components/network-metrics.tsx b/AppImage/components/network-metrics.tsx index f82cafdc..eabc2692 100644 --- a/AppImage/components/network-metrics.tsx +++ b/AppImage/components/network-metrics.tsx @@ -177,10 +177,13 @@ export function NetworkMetrics() { if (isLoading) { return ( -
-
-
Loading network data...
+
+
+
+
+
Loading network data...
+

Scanning interfaces, bridges and traffic

) } diff --git a/AppImage/components/storage-overview.tsx b/AppImage/components/storage-overview.tsx index 2567173b..a9a4cf79 100644 --- a/AppImage/components/storage-overview.tsx +++ b/AppImage/components/storage-overview.tsx @@ -476,8 +476,13 @@ export function StorageOverview() { if (loading) { return ( -
-
Loading storage information...
+
+
+
+
+
+
Loading storage data...
+

Scanning disks, partitions and storage pools

) } diff --git a/AppImage/components/virtual-machines.tsx b/AppImage/components/virtual-machines.tsx index 4eec7287..5e365de7 100644 --- a/AppImage/components/virtual-machines.tsx +++ b/AppImage/components/virtual-machines.tsx @@ -651,8 +651,13 @@ const handleDownloadLogs = async (vmid: number, vmName: string) => { if (isLoading) { return ( -
-
Loading virtual machines...
+
+
+
+
+
+
Loading virtual machines...
+

Fetching VM and LXC container status

) }