From 17a3c0c10197b6f16d06a51d6546082bb328eb3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Fern=C3=A1ndez?= Date: Mon, 8 May 2023 10:12:18 +0200 Subject: [PATCH] Navigation: Fix 'Page not found' when sending or going back from 'Invitate user' page (#67863) --- 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