diff --git a/frontend/src/components/contacts/ContactFolderTree.tsx b/frontend/src/components/contacts/ContactFolderTree.tsx
index 998c32b..2fde11c 100644
--- a/frontend/src/components/contacts/ContactFolderTree.tsx
+++ b/frontend/src/components/contacts/ContactFolderTree.tsx
@@ -171,21 +171,12 @@ function FolderTreeItem({
onSelectFolder(node.id);
}}
>
- {
- e.dataTransfer.setData('text/folder-id', node.id);
- e.dataTransfer.effectAllowed = 'move';
- }}
- className="flex items-center gap-1.5 flex-1 min-w-0"
- >
- {chevron(expanded)}
- {icon(ICONS.folder, 'w-4 h-4 text-secondary-400')}
- {node.name}
- {node.contact_count > 0 && (
- {node.contact_count}
- )}
-
+ {chevron(expanded)}
+ {icon(ICONS.folder, 'w-4 h-4 text-secondary-400')}
+ {node.name}
+ {node.contact_count > 0 && (
+ {node.contact_count}
+ )}