From 855d5372305dfb278f3ec01a14d2c648421bcff5 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 8 May 2023 10:09:49 +0100 Subject: [PATCH] [v10.0.x] Navigation: Fix 'Page not found' when sending or going back from 'Invitate user' page (#67972) --- public/app/features/org/UserInviteForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/app/features/org/UserInviteForm.tsx b/public/app/features/org/UserInviteForm.tsx index 40ba570823c..b8df6dc67ec 100644 --- a/public/app/features/org/UserInviteForm.tsx +++ b/public/app/features/org/UserInviteForm.tsx @@ -35,7 +35,7 @@ export const UserInviteForm = () => { const onSubmit = async (formData: FormModel) => { await dispatch(addInvitee(formData)).unwrap(); - locationService.push('/org/users/'); + locationService.push('/admin/users/'); }; return ( @@ -67,7 +67,7 @@ export const UserInviteForm = () => { - + Back