diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index d5d63c2..d6b3db9 100644 --- a/AppImage/components/proxmox-dashboard.tsx +++ b/AppImage/components/proxmox-dashboard.tsx @@ -144,7 +144,7 @@ export function ProxmoxDashboard() { // Oculta en cuanto se detecta desplazamiento hacia abajo else if (delta > 2) { if (hideTimeout) clearTimeout(hideTimeout) - hideTimeout = setTimeout(() => setShowNavigation(false), 50) + hideTimeout = setTimeout(() => setShowNavigation(false), 20) } // Muestra al mover un poco hacia arriba else if (delta < -2) { @@ -330,7 +330,7 @@ export function ProxmoxDashboard() {