From 89eb3d5ac188bf96e91b322b66e17da1a8f5999a Mon Sep 17 00:00:00 2001 From: Julian Date: Mon, 20 Nov 2023 09:59:05 -0500 Subject: [PATCH] lint --- src/js/components/Overview/LastIngestion.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/components/Overview/LastIngestion.tsx b/src/js/components/Overview/LastIngestion.tsx index 0ccd0bc4..76fe7739 100644 --- a/src/js/components/Overview/LastIngestion.tsx +++ b/src/js/components/Overview/LastIngestion.tsx @@ -47,7 +47,9 @@ const LastIngestionInfo: React.FC = () => { queryableDataTypes.map((dataType: LastIngestionDataTypeResponse) => ( - {t(getDataTypeLabel(dataType.id))} + + {t(getDataTypeLabel(dataType.id))} + {dataType.last_ingested ? formatDate(dataType.last_ingested) : 'Not Available'}