From ee1f19f7f2c03cc8c43c25ac3f263b17eb272692 Mon Sep 17 00:00:00 2001 From: codex-bot Date: Wed, 22 Oct 2025 10:22:23 -0300 Subject: [PATCH] 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 --- src/components/admin/machines/admin-machine-details.client.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/admin/machines/admin-machine-details.client.tsx b/src/components/admin/machines/admin-machine-details.client.tsx index b4b9a37..47c4e03 100644 --- a/src/components/admin/machines/admin-machine-details.client.tsx +++ b/src/components/admin/machines/admin-machine-details.client.tsx @@ -38,7 +38,7 @@ export function AdminMachineDetailsClient({ tenantId, machineId }: { tenantId: s } catch { // ignore } - }, 1200) + }, 300) return () => { if (timer.current) clearTimeout(timer.current) }