diff --git a/public/app/features/alerting/routes.tsx b/public/app/features/alerting/routes.tsx index 21759efc298..1e7288788c9 100644 --- a/public/app/features/alerting/routes.tsx +++ b/public/app/features/alerting/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') ), })); } diff --git a/public/app/features/profile/routes.tsx b/public/app/features/profile/routes.tsx index cd101b79164..c7939989eb7 100644 --- a/public/app/features/profile/routes.tsx +++ b/public/app/features/profile/routes.tsx @@ -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') ), })); }