diff --git a/frontend/src/component/insights/componentsChart/CreationArchiveChart/CreationArchiveChart.tsx b/frontend/src/component/insights/componentsChart/CreationArchiveChart/CreationArchiveChart.tsx index 413e6738b8..c3332cdb80 100644 --- a/frontend/src/component/insights/componentsChart/CreationArchiveChart/CreationArchiveChart.tsx +++ b/frontend/src/component/insights/componentsChart/CreationArchiveChart/CreationArchiveChart.tsx @@ -139,6 +139,7 @@ export const CreationArchiveChart: FC = ({ }, [creationVsArchivedChart, theme]); const useGraphCover = notEnoughData || isLoading; + const showNotEnoughDataText = notEnoughData && !isLoading; const data = useGraphCover ? placeholderData : aggregateOrProjectData; const options = useMemo( @@ -229,7 +230,7 @@ export const CreationArchiveChart: FC = ({ {useGraphCover ? ( - {notEnoughData ? : isLoading} + {showNotEnoughDataText ? : isLoading} ) : null}