diff --git a/static/app/views/organizationStats/teamInsights/teamAlertsTriggered.tsx b/static/app/views/organizationStats/teamInsights/teamAlertsTriggered.tsx index f85f08dd43f9db..a9674ced27a216 100644 --- a/static/app/views/organizationStats/teamInsights/teamAlertsTriggered.tsx +++ b/static/app/views/organizationStats/teamInsights/teamAlertsTriggered.tsx @@ -93,8 +93,10 @@ class TeamAlertsTriggered extends AsyncComponent { { seriesName: t('Alerts Triggered'), data: seriesData, + // @ts-expect-error silent does not exist in bar series type + silent: true, }, - ].reverse()} + ]} /> )} diff --git a/static/app/views/organizationStats/teamInsights/teamIssuesReviewed.tsx b/static/app/views/organizationStats/teamInsights/teamIssuesReviewed.tsx index b11eeaebcbd3b5..bb6ed10aca38db 100644 --- a/static/app/views/organizationStats/teamInsights/teamIssuesReviewed.tsx +++ b/static/app/views/organizationStats/teamInsights/teamIssuesReviewed.tsx @@ -127,10 +127,13 @@ class TeamIssuesReviewed extends AsyncComponent { { seriesName: t('Reviewed'), data: convertDaySeriesToWeeks(reviewedSeries), - }, + silent: true, + // silent is not incldued in the type for BarSeries + } as any, { seriesName: t('Not Reviewed'), data: convertDaySeriesToWeeks(notReviewedSeries), + silent: true, }, ]} /> diff --git a/static/app/views/organizationStats/teamInsights/teamResolutionTime.tsx b/static/app/views/organizationStats/teamInsights/teamResolutionTime.tsx index 59e062a7728a86..8af1aee7e62fc1 100644 --- a/static/app/views/organizationStats/teamInsights/teamResolutionTime.tsx +++ b/static/app/views/organizationStats/teamInsights/teamResolutionTime.tsx @@ -97,8 +97,10 @@ class TeamResolutionTime extends AsyncComponent { { seriesName: t('Time to Resolution'), data: seriesData, + // @ts-expect-error silent not included in bar series + silent: true, }, - ].reverse()} + ]} /> );