From f9dca7884232b872fdb0285fa180ee519d2595cf Mon Sep 17 00:00:00 2001 From: Malachi Willey Date: Wed, 9 Apr 2025 13:55:28 -0700 Subject: [PATCH] fix(nav): Navigate to correct insights and settings page URLs --- static/app/views/nav/tour/tour.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/app/views/nav/tour/tour.tsx b/static/app/views/nav/tour/tour.tsx index e171780d4f0e9d..c7ac956da6c028 100644 --- a/static/app/views/nav/tour/tour.tsx +++ b/static/app/views/nav/tour/tour.tsx @@ -161,12 +161,12 @@ export function NavigationTourProvider({children}: {children: React.ReactNode}) break; case StackedNavigationTour.INSIGHTS: if (activeGroup !== PrimaryNavGroup.INSIGHTS) { - navigate(normalizeUrl(`/${prefix}/insights/`), {replace: true}); + navigate(normalizeUrl(`/${prefix}/insights/frontend/`), {replace: true}); } break; case StackedNavigationTour.SETTINGS: if (activeGroup !== PrimaryNavGroup.SETTINGS) { - navigate(normalizeUrl(`/${prefix}/settings/organization/`), { + navigate(normalizeUrl(`/settings/${organization.slug}/`), { replace: true, }); }