fix: resolve merge conflict in draggable-item.tsx

This commit is contained in:
enkeii64 2025-07-17 00:07:39 +10:00
parent e0a5d4860a
commit 7cbbbe1630
1 changed files with 3 additions and 1 deletions

View File

@ -158,7 +158,7 @@ function PlusButton({
onClick?: () => void;
tooltipText?: string;
}) {
return (
const button = (
<Button
size="icon"
className={cn("absolute bottom-2 right-2 size-4", className)}
@ -172,4 +172,6 @@ function PlusButton({
<Plus className="!size-3" />
</Button>
);
return button;
}