From 213cc84602c0e1dc6edbaff690677003c0194dfd Mon Sep 17 00:00:00 2001 From: Eugene Fox Date: Thu, 3 Jul 2025 11:33:05 +0300 Subject: [PATCH] chore: reduce delay and increase tolerance for mouse drag and drop --- .../sidepanel/layouts/collections/CollectionListView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoints/sidepanel/layouts/collections/CollectionListView.tsx b/entrypoints/sidepanel/layouts/collections/CollectionListView.tsx index 66dec73..45ebfb0 100644 --- a/entrypoints/sidepanel/layouts/collections/CollectionListView.tsx +++ b/entrypoints/sidepanel/layouts/collections/CollectionListView.tsx @@ -33,7 +33,7 @@ export default function CollectionListView(): ReactElement const [active, setActive] = useState(null); const sensors = useSensors( - useSensor(MouseSensor, { activationConstraint: { delay: 100, tolerance: 0 } }), + useSensor(MouseSensor, { activationConstraint: { delay: 10, tolerance: 20 } }), useSensor(TouchSensor, { activationConstraint: { delay: 300, tolerance: 20 } }) );