From 055bab8e7ca342f113822173b52770d735da99a0 Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Mon, 22 Jan 2024 12:15:49 +0100 Subject: [PATCH] feat: include number of flags chart (#5987) --- .../src/component/executiveDashboard/ExecutiveDashboard.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/component/executiveDashboard/ExecutiveDashboard.tsx b/frontend/src/component/executiveDashboard/ExecutiveDashboard.tsx index f623492e07..398e11b7ea 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 + );