From 4048998173f89727001d0267505b90c1e6e7f2ac Mon Sep 17 00:00:00 2001 From: Reece Date: Wed, 1 Oct 2025 22:34:53 +0100 Subject: [PATCH] fix linting --- frontend/src/components/fileEditor/AddFileCard.tsx | 13 ------------- 1 file changed, 13 deletions(-) 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 */}