diff --git a/artifacts/tx-os/src/pages/executive-meetings.tsx b/artifacts/tx-os/src/pages/executive-meetings.tsx index de3f6bd8..3937ee76 100644 --- a/artifacts/tx-os/src/pages/executive-meetings.tsx +++ b/artifacts/tx-os/src/pages/executive-meetings.tsx @@ -1126,13 +1126,12 @@ function ScheduleSection({ // vertical scroll before the finger has moved 6px, so the drag never // activates. A long-press activation (delay+tolerance) lets the user // press-and-hold the row's grip handle to start dragging while still - // leaving normal scrolling intact everywhere else on the row. Values - // match home.tsx (250ms / 5px) for a consistent feel across the OS. + // leaving normal scrolling intact everywhere else on the row. // - KeyboardSensor for accessibility / keyboard reordering. const sensors = useSensors( useSensor(PointerSensor, { activationConstraint: { distance: 6 } }), useSensor(TouchSensor, { - activationConstraint: { delay: 250, tolerance: 5 }, + activationConstraint: { delay: 200, tolerance: 8 }, }), useSensor(KeyboardSensor, { coordinateGetter: sortableKeyboardCoordinates }), );