mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
Use standard pattern for lazy loading modules
This commit is contained in:
@@ -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,
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user