diff --git a/client/pages/SnowballPage.jsx b/client/pages/SnowballPage.jsx index e7df064..659759a 100644 --- a/client/pages/SnowballPage.jsx +++ b/client/pages/SnowballPage.jsx @@ -192,7 +192,7 @@ function useSortable(items, setItems, setDirty) { const onPointerDown = useCallback((e, index) => { // Only trigger on the grip handle (data-grip attr) - if (!e.currentTarget.dataset.grip) return; + if (!e.currentTarget.hasAttribute('data-grip')) return; // Ignore right-click if (e.button !== undefined && e.button !== 0) return;