diff --git a/src/components/asignaturas/detalle/DocumentoSEPTab.tsx b/src/components/asignaturas/detalle/DocumentoSEPTab.tsx index 9349a12..1e6e160 100644 --- a/src/components/asignaturas/detalle/DocumentoSEPTab.tsx +++ b/src/components/asignaturas/detalle/DocumentoSEPTab.tsx @@ -18,7 +18,8 @@ import { Card } from '@/components/ui/card' interface DocumentoSEPTabProps { pdfUrl: string | null isLoading: boolean - onDownload: () => void + onDownloadPdf: () => void + onDownloadWord: () => void onRegenerate: () => void isRegenerating: boolean } @@ -26,7 +27,8 @@ interface DocumentoSEPTabProps { export function DocumentoSEPTab({ pdfUrl, isLoading, - onDownload, + onDownloadPdf, + onDownloadWord, onRegenerate, isRegenerating, }: DocumentoSEPTabProps) { @@ -52,25 +54,23 @@ export function DocumentoSEPTab({