diff --git a/backend/service/storage_metrics.py b/backend/service/storage_metrics.py index b131e34..f337bfc 100644 --- a/backend/service/storage_metrics.py +++ b/backend/service/storage_metrics.py @@ -77,6 +77,7 @@ def main() -> None: "known_job_ids": len(known_job_ids), "temporary_jobs": [item.model_dump(mode="json") for item in cleanup_report.temporary_jobs], "pending_product_ids": [item.product_id for item in cleanup_report.pending_products], + "failed_product_ids": [item.product_id for item in cleanup_report.failed_products], "reminder_job_ids": cleanup_report.reminder_job_ids, "stale_job_count": len(orphaned), "reclaimable_bytes": reclaimable, diff --git a/frontend/src/pages/ProductArchivePage.tsx b/frontend/src/pages/ProductArchivePage.tsx index f365452..33de11e 100644 --- a/frontend/src/pages/ProductArchivePage.tsx +++ b/frontend/src/pages/ProductArchivePage.tsx @@ -275,9 +275,9 @@ export default function ProductArchivePage({ {loading &&