Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 48facaf

Browse files
committedFeb 13, 2025·
fix: catch all rule spacing
1 parent c16fb69 commit 48facaf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/components/SortableArea.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ function ItemWrapper({
4343

4444
return (
4545
<div style={style} className="flex items-center w-full">
46-
{!disabledDrag && (
46+
{disabledDrag ? (
47+
<div className="size-8" />
48+
) : (
4749
<div ref={setNodeRef} {...attributes} {...listeners} className="size-8">
4850
<Drag />
4951
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.