Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions static/app/views/performance/landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,19 @@ export function PerformanceLanding(props: Props) {
{t(
`To make it easier to see what's relevant for you, Sentry's Performance landing page is now being split into separate `
)}
<Link to={getPerformanceBaseUrl(slug, 'frontend')}>{FRONTEND_SIDEBAR_LABEL}</Link>
<Link to={`${getPerformanceBaseUrl(slug, 'frontend')}/`}>
{FRONTEND_SIDEBAR_LABEL}
</Link>
{`, `}
<Link to={getPerformanceBaseUrl(slug, 'backend')}>{BACKEND_SIDEBAR_LABEL}</Link>
<Link to={`${getPerformanceBaseUrl(slug, 'backend')}/`}>
{BACKEND_SIDEBAR_LABEL}
</Link>
{`, `}
<Link to={getPerformanceBaseUrl(slug, 'mobile')}>{MOBILE_SIDEBAR_LABEL}</Link>
<Link to={`${getPerformanceBaseUrl(slug, 'mobile')}/`}>
{MOBILE_SIDEBAR_LABEL}
</Link>
{t(', and ')}
<Link to={getPerformanceBaseUrl(slug, 'ai')}>{AI_SIDEBAR_LABEL}</Link>
<Link to={`${getPerformanceBaseUrl(slug, 'ai')}/`}>{AI_SIDEBAR_LABEL}</Link>
{t(' performance pages. They can all be found in the Insights tab.')}
</Fragment>
);
Expand Down
Loading