refactor: cleanup dragging cursor indicator

This commit is contained in:
Carlos Valente
2025-10-05 06:57:52 +02:00
committed by Alex Christoffer Rasmussen
parent d986f438d9
commit 960a39fbf4
5 changed files with 1 additions and 5 deletions
@@ -24,7 +24,6 @@ export function SortableCell({ columnId, colSpan, injectedStyles, children, drag
const dragStyle = {
...injectedStyles,
zIndex: isDragging ? 2 : 'inherit',
cursor: isDragging ? 'grabbing' : 'grab',
transform: CSS.Translate.toString(transform),
transition,
};