diff --git a/frontend/src/containers/ReportStep/ReportContent/index.tsx b/frontend/src/containers/ReportStep/ReportContent/index.tsx index 1a1dc3848..6ae26b93f 100644 --- a/frontend/src/containers/ReportStep/ReportContent/index.tsx +++ b/frontend/src/containers/ReportStep/ReportContent/index.tsx @@ -404,7 +404,11 @@ const ReportContent = (props: ReportContentProps) => { setPageType(REPORT_PAGE_TYPE.SUMMARY); } else { setDisplayType(DISPLAY_TYPE.CHART); - setPageType(REPORT_PAGE_TYPE.BOARD_CHART); + if (shouldShowBoardMetricsChart) { + setPageType(REPORT_PAGE_TYPE.BOARD_CHART); + } else { + setPageType(REPORT_PAGE_TYPE.DORA_CHART); + } } };