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

This commit is contained in:
matt abrams
2022-05-16 15:26:14 +02:00
committed by GitHub
parent 4bd97c8673
commit 522a31c479
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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')
),
}));
}
+1 -1
View File
@@ -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')
),
}));
}