Build: Change names to PascalCase to match (#48949)

pull/49013/head
matt abrams 3 years ago committed by GitHub
parent 4bd97c8673
commit 522a31c479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/app/features/alerting/routes.tsx
  2. 2
      public/app/features/profile/routes.tsx

@ -294,7 +294,7 @@ export function getAlertingRoutes(cfg = config): RouteDescriptor[] {
return uniquePaths.map((path) => ({
path,
component: SafeDynamicImport(
() => import(/* webpackChunkName: "Alerting feature toggle page"*/ 'app/features/alerting/FeatureTogglePage')
() => import(/* webpackChunkName: "AlertingFeatureTogglePage"*/ 'app/features/alerting/FeatureTogglePage')
),
}));
}

@ -34,7 +34,7 @@ export function getProfileRoutes(cfg = config): RouteDescriptor[] {
return uniquePaths.map((path) => ({
path,
component: SafeDynamicImport(
() => import(/* webpackChunkName: "Profile feature toggle page"*/ 'app/features/profile/FeatureTogglePage')
() => import(/* webpackChunkName: "ProfileFeatureTogglePage"*/ 'app/features/profile/FeatureTogglePage')
),
}));
}

Loading…
Cancel
Save