aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/groups/routes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/groups/routes.ts')
-rw-r--r--server/sonar-web/src/main/js/apps/groups/routes.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/groups/routes.ts b/server/sonar-web/src/main/js/apps/groups/routes.ts
index 6222c04d6e0..88584bbe9df 100644
--- a/server/sonar-web/src/main/js/apps/groups/routes.ts
+++ b/server/sonar-web/src/main/js/apps/groups/routes.ts
@@ -23,10 +23,10 @@ const routes = [
{
getIndexRoute(_: RouterState, callback: (err: any, route: IndexRouteProps) => any) {
Promise.all([
- import('./components/GroupsAppContainer').then(i => i.default),
+ import('./components/App').then(i => i.default),
import('../organizations/forSingleOrganization').then(i => i.default)
- ]).then(([GroupsAppContainer, forSingleOrganization]) =>
- callback(null, { component: forSingleOrganization(GroupsAppContainer) })
+ ]).then(([App, forSingleOrganization]) =>
+ callback(null, { component: forSingleOrganization(App) })
);
}
}