From 7aff0d02831f4647dff0564444759f1c96c64ba7 Mon Sep 17 00:00:00 2001 From: null Date: Thu, 14 May 2026 03:23:52 -0500 Subject: [PATCH] snowball ui fiix --- client/pages/SnowballPage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;