From acbf02cd2f023839c257eff83ab9a78985bdc0e7 Mon Sep 17 00:00:00 2001 From: Alex Khomenko Date: Wed, 31 Jul 2024 12:49:14 +0300 Subject: [PATCH] Navigation: Redirect org users to admin users (#91051) --- public/app/routes/routes.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/public/app/routes/routes.tsx b/public/app/routes/routes.tsx index ecb47f368d5..552a3431479 100644 --- a/public/app/routes/routes.tsx +++ b/public/app/routes/routes.tsx @@ -219,9 +219,8 @@ export function getAppRoutes(): RouteDescriptor[] { }, { path: '/org/users', - component: SafeDynamicImport( - () => import(/* webpackChunkName: "UsersListPage" */ 'app/features/users/UsersListPage') - ), + // Org users page has been combined with admin users + component: () => , }, { path: '/org/users/invite',