diff --git a/static/app/views/alerts/wizard/index.spec.tsx b/static/app/views/alerts/wizard/index.spec.tsx index d039917dcd7ac1..dd291fbc52f85a 100644 --- a/static/app/views/alerts/wizard/index.spec.tsx +++ b/static/app/views/alerts/wizard/index.spec.tsx @@ -70,10 +70,11 @@ describe('AlertWizard', () => { expect(screen.getByText('Errors')).toBeInTheDocument(); expect(screen.getByText('Sessions')).toBeInTheDocument(); expect(screen.getByText('Performance')).toBeInTheDocument(); + expect(screen.getByText('Uptime Monitoring')).toBeInTheDocument(); expect(screen.getByText('LLM Monitoring')).toBeInTheDocument(); expect(screen.getByText('Custom')).toBeInTheDocument(); const alertGroups = screen.getAllByRole('radiogroup'); - expect(alertGroups.length).toEqual(5); + expect(alertGroups.length).toEqual(6); }); it('should only render alerts for errors in self-hosted errors only', () => { @@ -112,7 +113,6 @@ describe('AlertWizard', () => { 'incidents', 'performance-view', 'crash-rate-alerts', - 'uptime-display-wizard-create', ], access: ['org:write', 'alerts:write'], }, diff --git a/static/app/views/alerts/wizard/options.tsx b/static/app/views/alerts/wizard/options.tsx index 04d93bb1dc0ad6..f12fd4989cbd23 100644 --- a/static/app/views/alerts/wizard/options.tsx +++ b/static/app/views/alerts/wizard/options.tsx @@ -144,12 +144,10 @@ export const getAlertWizardCategories = (org: Organization) => { }); } - if (org.features.includes('uptime-display-wizard-create')) { - result.push({ - categoryHeading: t('Uptime Monitoring'), - options: ['uptime_monitor'], - }); - } + result.push({ + categoryHeading: t('Uptime Monitoring'), + options: ['uptime_monitor'], + }); result.push({ categoryHeading: hasCustomMetrics(org) ? t('Metrics') : t('Custom'), options: [hasCustomMetrics(org) ? 'custom_metrics' : 'custom_transactions'],