diff --git a/packages/frontend/src/components/PaginatedSongList.tsx b/packages/frontend/src/components/PaginatedSongList.tsx index 3cf68f5..958c93e 100644 --- a/packages/frontend/src/components/PaginatedSongList.tsx +++ b/packages/frontend/src/components/PaginatedSongList.tsx @@ -318,7 +318,7 @@ export const PaginatedSongList: React.FC = memo(({ // Create a custom drag image with count badge when dragging multiple try { const count = ids.length; - if (count > 1) { + if (count >= 1) { // Build a lightweight preview element const preview = document.createElement('div'); preview.style.position = 'fixed';