fix linting

This commit is contained in:
Reece 2025-10-01 22:34:36 +01:00
parent 5cd5ad0615
commit 1924780155

View File

@ -48,12 +48,12 @@ const AddFileCard = ({
};
// Prevent this card from interfering with drag and drop to parent Dropzone
const handleDragOver = (e: React.DragEvent) => {
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) => {
const handleDrop = (_e: React.DragEvent) => {
// Don't prevent default or stop propagation
// Let the parent Dropzone handle the file drop
};