Skip to content

Commit

Permalink
fix(insights): add missing slash on performance moving banner (#81364)
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikB2014 authored Nov 27, 2024
1 parent 1d2c1c6 commit 2f93a45
Showing 1 changed file with 10 additions and 4 deletions.
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

0 comments on commit 2f93a45

Please sign in to comment.