diff --git a/src/routes/overview/overview.tsx b/src/routes/overview/overview.tsx index 3e99e4e2f..3cfe13ce7 100644 --- a/src/routes/overview/overview.tsx +++ b/src/routes/overview/overview.tsx @@ -504,7 +504,7 @@ class OverviewBase extends React.Component { return hasData ? : noData; } else if (currentInfrastructurePerspective === InfrastructurePerspective.aws) { const hasData = hasCurrentMonthData(awsProviders) || hasPreviousMonthData(awsProviders); - return hasData ? : noData; + return hasData ? : noData; } else if (currentInfrastructurePerspective === InfrastructurePerspective.awsOcp) { const hasData = hasCloudCurrentMonthData(awsProviders, ocpProviders) || hasCloudPreviousMonthData(awsProviders, ocpProviders);