Browse Source

ref(trace-view): Removing the new badge from trace view (#26247)

- Trace view has been out for a little over a month now, removing the
  new badge
William Mak 3 years ago
parent
commit
91a9b730d1

+ 0 - 2
static/app/views/organizationGroupDetails/quickTrace/issueQuickTrace.tsx

@@ -8,7 +8,6 @@ import {Client} from 'app/api';
 import Alert from 'app/components/alert';
 import Button from 'app/components/button';
 import ErrorBoundary from 'app/components/errorBoundary';
-import FeatureBadge from 'app/components/featureBadge';
 import ExternalLink from 'app/components/links/externalLink';
 import Placeholder from 'app/components/placeholder';
 import QuickTrace from 'app/components/quickTrace';
@@ -82,7 +81,6 @@ class IssueQuickTrace extends Component<Props, State> {
           onClick={() => this.handleTraceLink(organization)}
         >
           {t('View Full Trace')}
-          <FeatureBadge type="new" />
         </Link>
       </LinkContainer>
     );

+ 0 - 2
static/app/views/performance/traceDetails/content.tsx

@@ -11,7 +11,6 @@ import DiscoverButton from 'app/components/discoverButton';
 import * as AnchorLinkManager from 'app/components/events/interfaces/spans/anchorLinkManager';
 import * as DividerHandlerManager from 'app/components/events/interfaces/spans/dividerHandlerManager';
 import * as ScrollbarManager from 'app/components/events/interfaces/spans/scrollbarManager';
-import FeatureBadge from 'app/components/featureBadge';
 import * as Layout from 'app/components/layouts/thirds';
 import ExternalLink from 'app/components/links/externalLink';
 import Link from 'app/components/links/link';
@@ -626,7 +625,6 @@ class TraceDetailsContent extends React.Component<Props, State> {
             />
             <Layout.Title data-test-id="trace-header">
               {t('Trace ID: %s', traceSlug)}
-              <FeatureBadge type="new" />
             </Layout.Title>
           </Layout.HeaderContent>
           <Layout.HeaderActions>

+ 0 - 1
static/app/views/performance/transactionDetails/quickTraceMeta.tsx

@@ -142,7 +142,6 @@ export function QuickTraceMetaBase({body, footer}: {body: ReactNode; footer: Rea
   return (
     <MetaData
       headingText={t('Quick Trace')}
-      badge="new"
       tooltipText={t(
         'A minified version of the full trace. Related frontend and backend services can be added to provide further visibility.'
       )}