diff --git a/frontend/src/components/dashboard/ExportDropdown.jsx b/frontend/src/components/dashboard/ExportDropdown.jsx index 49729c9..4d998b5 100644 --- a/frontend/src/components/dashboard/ExportDropdown.jsx +++ b/frontend/src/components/dashboard/ExportDropdown.jsx @@ -26,9 +26,6 @@ export function ExportDropdown({ const isBusy = Boolean(exportingFormat); const hasSelection = selectedCount > 0; - const nothingToDownload = - isAuthenticated && !hasSelection && newPublicationsCount === 0; - function handleDownload() { const { format, profile } = resolveExportFromDestination(exportDestination); onExport(format, profile); @@ -62,7 +59,7 @@ export function ExportDropdown({