From 522a31c479cbdb8ed07151d6fdc9a1cab05588d6 Mon Sep 17 00:00:00 2001 From: matt abrams <37156449+zuchka@users.noreply.github.com> Date: Mon, 16 May 2022 03:26:14 -1000 Subject: [PATCH] Build: Change names to PascalCase to match (#48949) --- public/app/features/alerting/routes.tsx | 2 +- public/app/features/profile/routes.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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') ), })); }