Skip to content

Commit 41057fa

Browse files
authored
fix(routes): Add trailing slash to /issues route for better logging (#87214)
The lack of a trailing slash was causing some analytics and sentry logging to use a badly formed route name.
1 parent 014f98b commit 41057fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/routes.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2110,7 +2110,7 @@ function buildRoutes() {
21102110
);
21112111

21122112
const issueRoutes = (
2113-
<Route path="/issues" component={errorHandler(IssueNavigation)} withOrgPath>
2113+
<Route path="/issues/" component={errorHandler(IssueNavigation)} withOrgPath>
21142114
<IndexRoute component={errorHandler(OverviewWrapper)} />
21152115
<Route path="views/:viewId/" component={errorHandler(OverviewWrapper)} />
21162116
<Route path="searches/:searchId/" component={errorHandler(OverviewWrapper)} />

0 commit comments

Comments
 (0)