Browse Source

meta(ui): Fix duplicated `webpackChunkName` (#18991)

These were copy and pasted and not updated
Billy Vong 4 years ago
parent
commit
8902a78581
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/sentry/static/sentry/app/routes.jsx

+ 2 - 2
src/sentry/static/sentry/app/routes.jsx

@@ -952,7 +952,7 @@ function routes() {
         path="/extensions/external-install/:providerId/:installationId"
         componentPromise={() =>
           import(
-            /* webpackChunkName: "AcceptProjectTransfer" */ 'app/views/integrationInstallation'
+            /* webpackChunkName: "ExtensionsIntegrationInstallation" */ 'app/views/integrationInstallation'
           )
         }
         component={errorHandler(LazyLoad)}
@@ -971,7 +971,7 @@ function routes() {
         path="/sentry-apps/:sentryAppSlug/external-install/"
         componentPromise={() =>
           import(
-            /* webpackChunkName: "AcceptProjectTransfer" */ 'app/views/sentryAppExternalInstallation'
+            /* webpackChunkName: "SentryAppExternalInstallation" */ 'app/views/sentryAppExternalInstallation'
           )
         }
         component={errorHandler(LazyLoad)}