diff --git a/AppImage/components/virtual-machines.tsx b/AppImage/components/virtual-machines.tsx
index bf6bd12..75677f2 100644
--- a/AppImage/components/virtual-machines.tsx
+++ b/AppImage/components/virtual-machines.tsx
@@ -807,10 +807,10 @@ export function VirtualMachines() {
<>
-
+
{/* CPU Usage */}
@@ -820,7 +820,7 @@ export function VirtualMachines() {
@@ -835,7 +835,7 @@ export function VirtualMachines() {
@@ -850,92 +850,7 @@ export function VirtualMachines() {
-
-
- {/* Disk I/O */}
-
-
Disk I/O
-
-
- ↓
- {((selectedVM.diskread || 0) / 1024 ** 2).toFixed(2)} MB
-
-
- ↑
- {((selectedVM.diskwrite || 0) / 1024 ** 2).toFixed(2)} MB
-
-
-
-
- {/* Network I/O */}
-
-
Network I/O
-
-
- ↓
- {((selectedVM.netin || 0) / 1024 ** 2).toFixed(2)} MB
-
-
- ↑
- {((selectedVM.netout || 0) / 1024 ** 2).toFixed(2)} MB
-
-
-
-
-
- {getOSIcon(vmDetails?.os_info, selectedVM.type)}
-
-
-
-
-
-
-
-
- {/* CPU Usage */}
-
-
CPU Usage
-
- {(selectedVM.cpu * 100).toFixed(1)}%
-
-
-
-
- {/* Memory */}
-
-
Memory
-
- {(selectedVM.mem / 1024 ** 3).toFixed(1)} /{" "}
- {(selectedVM.maxmem / 1024 ** 3).toFixed(1)} GB
-
-
-
-
- {/* Disk */}
-
-
Disk
-
- {(selectedVM.disk / 1024 ** 3).toFixed(1)} /{" "}
- {(selectedVM.maxdisk / 1024 ** 3).toFixed(1)} GB
-
-