We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3984b0 commit 0d686bcCopy full SHA for 0d686bc
frontend/components/tasks/section.tsx
@@ -58,9 +58,13 @@ export function Section({ sectionId }: { sectionId: string }) {
58
}, [section]);
59
60
const dndSensors = useSensors(
61
- useSensor(MouseSensor),
+ useSensor(MouseSensor, {
62
+ activationConstraint: {
63
+ distance: 5,
64
+ },
65
+ }),
66
useSensor(TouchSensor, {
- activationConstraint: { distance: 5, delay: 100 },
67
+ activationConstraint: { distance: 5, delay: 500 },
68
})
69
);
70
0 commit comments