diff --git a/src/components/FileRow.tsx b/src/components/FileRow.tsx index ecbef96..1f4b87b 100644 --- a/src/components/FileRow.tsx +++ b/src/components/FileRow.tsx @@ -12,7 +12,6 @@ interface FileRowProps { onRemove: (id: string) => void; onDownload: (file: UploadedFile) => void; onPreview: (file: UploadedFile) => void; - onDeleteConverted: (id: string) => void; } export function FileRow({ @@ -22,7 +21,6 @@ export function FileRow({ onRemove, onDownload, onPreview, - onDeleteConverted, }: FileRowProps) { const color = CATEGORY_COLORS[file.category]; const icon = CATEGORY_ICONS[file.category]; @@ -105,7 +103,7 @@ export function FileRow({ {/* Status / actions */}