Skip to content

Commit

Permalink
fix: remove stale stats widget (#7353)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Jun 11, 2024
1 parent 3643016 commit 5225452
Showing 1 changed file with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
const StyledBox = styled(Box)(({ theme }) => ({
display: 'grid',
gap: theme.spacing(2),
gridTemplateColumns: 'repeat(5, 1fr)',
gridTemplateColumns: 'repeat(4, 1fr)',
flexWrap: 'wrap',
[theme.breakpoints.down('lg')]: {
gridTemplateColumns: 'repeat(2, 1fr)',
Expand Down Expand Up @@ -105,18 +105,6 @@ export const ProjectInsightsStats = ({ stats }: IProjectStatsProps) => {
</NavigationBar>
</StatusBox>

<StatusBox
title='Stale flags'
boxText={String(projectActivityCurrentWindow)}
change={
projectActivityCurrentWindow - projectActivityPastWindow
}
>
<NavigationBar to={`/projects/${projectId}/health`}>
<KeyboardArrowRight />
</NavigationBar>
</StatusBox>

<StatusBox
title='Features archived'
boxText={String(archivedCurrentWindow)}
Expand Down

0 comments on commit 5225452

Please sign in to comment.