diff --git a/src/app/oss-routing.module.ts b/src/app/oss-routing.module.ts index 6b6a3fe9..5ba88fd8 100644 --- a/src/app/oss-routing.module.ts +++ b/src/app/oss-routing.module.ts @@ -231,8 +231,8 @@ const routes: Routes = [ { path: "setup/families-for-enterprise", component: FamiliesForEnterpriseSetupComponent }, { path: "organizations", - loadChildren: () => - import("./organizations/organizations.module").then((m) => m.OrganizationsModule), + loadChildren: async () => + (await import("./organizations/organizations.module")).OrganizationsModule, }, ], },