Browse Source

feat: stop checking source map cta feature flag on fe (#45553)

Stop checking the feature flag now that it's at 100%
Stephen Cefali 2 years ago
parent
commit
32caaa023d

+ 1 - 1
static/app/components/events/interfaces/crashContent/exception/sourceMapDebug.spec.tsx

@@ -14,7 +14,7 @@ import {
 jest.mock('sentry/utils/analytics/trackAdvancedAnalyticsEvent');
 
 describe('SourceMapDebug', () => {
-  const organization = TestStubs.Organization({features: ['fix-source-map-cta']});
+  const organization = TestStubs.Organization({});
   const project = TestStubs.Project();
   const eventId = '1ec1bd65b0b1484b97162087a652421b';
   const exceptionValues: ExceptionValue[] = [

+ 0 - 4
static/app/components/events/interfaces/crashContent/exception/useSourceMapDebug.tsx

@@ -156,10 +156,6 @@ export function debugFramesEnabled({
     return false;
   }
 
-  if (!organization.features.includes('fix-source-map-cta')) {
-    return false;
-  }
-
   return ALLOWED_SDKS.includes(sdkName);
 }