Skip to content

Commit 6f0835c

Browse files
malwilleyandrewshie-sentry
authored andcommitted
fix(nav): Navigate to correct insights and settings page URLs (#89216)
1 parent 739ef83 commit 6f0835c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/app/views/nav/tour/tour.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ export function NavigationTourProvider({children}: {children: React.ReactNode})
161161
break;
162162
case StackedNavigationTour.INSIGHTS:
163163
if (activeGroup !== PrimaryNavGroup.INSIGHTS) {
164-
navigate(normalizeUrl(`/${prefix}/insights/`), {replace: true});
164+
navigate(normalizeUrl(`/${prefix}/insights/frontend/`), {replace: true});
165165
}
166166
break;
167167
case StackedNavigationTour.SETTINGS:
168168
if (activeGroup !== PrimaryNavGroup.SETTINGS) {
169-
navigate(normalizeUrl(`/${prefix}/settings/organization/`), {
169+
navigate(normalizeUrl(`/settings/${organization.slug}/`), {
170170
replace: true,
171171
});
172172
}

0 commit comments

Comments
 (0)