diff --git a/static/app/components/sidebar/index.tsx b/static/app/components/sidebar/index.tsx index 96482589f80bd7..e64bf52c86113b 100644 --- a/static/app/components/sidebar/index.tsx +++ b/static/app/components/sidebar/index.tsx @@ -342,8 +342,6 @@ function Sidebar({location, organization}: Props) { label={t('Profiling')} to={`/organizations/${organization.slug}/profiling/`} id="profiling" - isBeta={!organization.features.includes('profiling-ga')} - isNew={organization.features.includes('profiling-ga')} /> ); diff --git a/static/app/views/performance/transactionSummary/header.tsx b/static/app/views/performance/transactionSummary/header.tsx index b6bef45f22b18d..2c8da559b34005 100644 --- a/static/app/views/performance/transactionSummary/header.tsx +++ b/static/app/views/performance/transactionSummary/header.tsx @@ -223,11 +223,6 @@ function TransactionHeader({ hidden={!hasProfiling} > {t('Profiles')} - {organization.features.includes('profiling-ga') ? ( - - ) : ( - - )} ); diff --git a/static/app/views/profiling/content.tsx b/static/app/views/profiling/content.tsx index ef516309622713..4efa8152df76c1 100644 --- a/static/app/views/profiling/content.tsx +++ b/static/app/views/profiling/content.tsx @@ -8,7 +8,6 @@ import {Button} from 'sentry/components/button'; import DatePageFilter from 'sentry/components/datePageFilter'; import EnvironmentPageFilter from 'sentry/components/environmentPageFilter'; import SearchBar from 'sentry/components/events/searchBar'; -import FeatureBadge from 'sentry/components/featureBadge'; import * as Layout from 'sentry/components/layouts/thirds'; import PageFilterBar from 'sentry/components/organizations/pageFilterBar'; import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container'; @@ -153,8 +152,6 @@ function ProfilingContent({location}: ProfilingContentProps) { return _eventView; }, [location, query, selection.projects]); - const isProfilingGA = organization.features.includes('profiling-ga'); - return ( - {isProfilingGA && } + @@ -176,11 +173,6 @@ function ProfilingContent({location}: ProfilingContentProps) { 'Profiling collects detailed information in production about the functions executing in your application and how long they take to run, giving you code-level visibility into your hot paths.' )} /> - {isProfilingGA ? ( - - ) : ( - - )} @@ -222,51 +214,39 @@ function ProfilingContent({location}: ProfilingContentProps) { )} {shouldShowProfilingOnboardingPanel ? ( - isProfilingGA ? ( - // If user is on m2, show default - -

{t('Function level insights')}

-

- {t( - 'Discover slow-to-execute or resource intensive functions within your application' - )} -

- - } - /> - } - > - - {t('Set Up Profiling')} - + +

{t('Function level insights')}

+

+ {t( + 'Discover slow-to-execute or resource intensive functions within your application' + )} +

+
} - > - {t('Update plan')} -
- -
- ) : ( - // show previous state - - - - - ) + /> + } + > + + {t('Set Up Profiling')} + + } + > + {t('Update plan')} + + + ) : ( {organization.features.includes(