diff --git a/frontend/src/components/fileEditor/AddFileCard.tsx b/frontend/src/components/fileEditor/AddFileCard.tsx index 406edacd7..e00d5d173 100644 --- a/frontend/src/components/fileEditor/AddFileCard.tsx +++ b/frontend/src/components/fileEditor/AddFileCard.tsx @@ -47,17 +47,6 @@ const AddFileCard = ({ event.target.value = ''; }; - // Prevent this card from interfering with drag and drop to parent Dropzone - const handleDragOver = (_e: React.DragEvent) => { - // Don't prevent default - let the parent Dropzone handle it - // Don't stop propagation - let it bubble up - }; - - const handleDrop = (_e: React.DragEvent) => { - // Don't prevent default or stop propagation - // Let the parent Dropzone handle the file drop - }; - return ( <> {/* Header bar - matches FileEditorThumbnail structure */}