|
@@ -230,8 +230,12 @@ function TransactionHeader({
|
|
|
textValue={t('Profiling')}
|
|
|
hidden={!hasProfiling}
|
|
|
>
|
|
|
- {t('Profiling')}
|
|
|
- <FeatureBadge type="beta" tooltipProps={{disabled: true}} />
|
|
|
+ {t('Profiles')}
|
|
|
+ {organization.features.includes('profiling-ga') ? (
|
|
|
+ <FeatureBadge type="new" tooltipProps={{disabled: true}} />
|
|
|
+ ) : (
|
|
|
+ <FeatureBadge type="beta" tooltipProps={{disabled: true}} />
|
|
|
+ )}
|
|
|
</TabList.Item>
|
|
|
</TabList>
|
|
|
);
|