diff --git a/frontend/src/component/executiveDashboard/ExecutiveDashboard.tsx b/frontend/src/component/executiveDashboard/ExecutiveDashboard.tsx index f623492e07cf..398e11b7ea27 100644 --- a/frontend/src/component/executiveDashboard/ExecutiveDashboard.tsx +++ b/frontend/src/component/executiveDashboard/ExecutiveDashboard.tsx @@ -2,6 +2,7 @@ import { Box, Paper, styled, Typography } from '@mui/material'; import { PageHeader } from 'component/common/PageHeader/PageHeader'; import { VFC } from 'react'; import { UsersChart } from './UsersChart/UsersChart'; +import { FlagsChart } from './FlagsChart/FlagsChart'; const StyledGrid = styled(Box)(({ theme }) => ({ display: 'grid', @@ -27,6 +28,7 @@ export const ExecutiveDashboard: VFC = () => { Stats + );