Skip to content

Commit 0bbd4d0

Browse files
authored
feat(insights): remove spans tab from spans summary (#87890)
Deprecate `spans` tab in the transaction summary page <img width="574" alt="image" src="https://github.com/user-attachments/assets/c424d071-ddab-4751-958c-41d6fc3d7db2" /> I did check, and I could not find anything that links to this page, but in the odd chance something does I marked the tab as `hidden` so the link still works and we can track page usage to see if it's being accessed Follow up PR will be created to cleanup remaining code, and remove `hidden`
1 parent 4388081 commit 0bbd4d0

File tree

1 file changed

+3
-1
lines changed
  • static/app/views/performance/transactionSummary

1 file changed

+3
-1
lines changed

static/app/views/performance/transactionSummary/header.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ function TransactionHeader({
206206
<TabList.Item key={Tab.TRANSACTION_SUMMARY}>{t('Overview')}</TabList.Item>
207207
<TabList.Item key={Tab.EVENTS}>{t('Sampled Events')}</TabList.Item>
208208
<TabList.Item key={Tab.TAGS}>{t('Tags')}</TabList.Item>
209-
<TabList.Item key={Tab.SPANS}>{t('Spans')}</TabList.Item>
209+
<TabList.Item key={Tab.SPANS} hidden>
210+
{t('Spans')}
211+
</TabList.Item>
210212
<TabList.Item
211213
key={Tab.WEB_VITALS}
212214
textValue={t('Web Vitals')}

0 commit comments

Comments
 (0)