Skip to content

Commit

Permalink
feat(uptime): Switch wizard display to diff feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Sep 20, 2024
1 parent a5ff039 commit bcaaf51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion static/app/views/alerts/wizard/index.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe('AlertWizard', () => {
'incidents',
'performance-view',
'crash-rate-alerts',
'uptime-api-create-update',
'organizations:uptime-display-wizard-create',
],
access: ['org:write', 'alerts:write'],
},
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/alerts/wizard/options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export const getAlertWizardCategories = (org: Organization) => {
options: ['llm_tokens', 'llm_cost'],
});
}
if (org.features.includes('uptime-api-create-update')) {
if (org.features.includes('organizations:uptime-display-wizard-create')) {
result.push({
categoryHeading: t('Uptime'),
options: ['uptime_monitor'],
Expand Down

0 comments on commit bcaaf51

Please sign in to comment.