Browse Source

ref(ts): Remove unused enum keys in SidebarPanelKey + ExperimentType (#50438)

Evan Purkhiser 1 year ago
parent
commit
58de2be54b
2 changed files with 0 additions and 12 deletions
  1. 0 8
      static/app/components/sidebar/types.tsx
  2. 0 4
      static/app/types/experiments.tsx

+ 0 - 8
static/app/components/sidebar/types.tsx

@@ -7,14 +7,6 @@ export enum SidebarPanelKey {
   PERFORMANCE_ONBOARDING = 'performance_onboarding',
   REPLAYS_ONBOARDING = 'replays_onboarding',
   PROFILING_ONBOARDING = 'profiling_onboarding',
-
-  // TODO(epurkhiser): Delete
-  Broadcasts = 'broadcasts',
-  OnboardingWizard = 'todos',
-  ServiceIncidents = 'statusupdate',
-  PerformanceOnboarding = 'performance_onboarding',
-  ReplaysOnboarding = 'replays_onboarding',
-  ProfilingOnboarding = 'profiling_onboarding',
 }
 
 export type CommonSidebarProps = {

+ 0 - 4
static/app/types/experiments.tsx

@@ -6,10 +6,6 @@ import type {experimentList, unassignedValue} from 'sentry/data/experimentConfig
 export enum ExperimentType {
   ORGANIZATION = 'organization',
   USER = 'user',
-
-  // TODO(epurkhiser): Delete
-  Organization = 'organization',
-  User = 'user',
 }
 
 /**