fix(machines): reduce HTTP fallback delay on admin machine details to 300ms to bypass Convex client loading edge cases; Convex already returns full data for machine id

This commit is contained in:
codex-bot 2025-10-22 10:22:23 -03:00
parent 7a7154775c
commit ee1f19f7f2

View file

@ -38,7 +38,7 @@ export function AdminMachineDetailsClient({ tenantId, machineId }: { tenantId: s
} catch { } catch {
// ignore // ignore
} }
}, 1200) }, 300)
return () => { return () => {
if (timer.current) clearTimeout(timer.current) if (timer.current) clearTimeout(timer.current)
} }