diff --git a/.changeset/friendly-weeks-cry.md b/.changeset/friendly-weeks-cry.md new file mode 100644 index 0000000000..dfe5765d49 --- /dev/null +++ b/.changeset/friendly-weeks-cry.md @@ -0,0 +1,21 @@ +--- +'@backstage/create-app': patch +--- + +Rebind external route for catalog import plugin from `scaffolderPlugin.routes.root` to `catalogImportPlugin.routes.importPage`. + +To make this change to an existing app, make the following change to `packages/app/src/App.tsx` + +```diff +const App = createApp({ + ... + bindRoutes({ bind }) { + ... + bind(apiDocsPlugin.externalRoutes, { +- createComponent: scaffolderPlugin.routes.root, ++ registerComponent: catalogImportPlugin.routes.importPage, + }); + ... + }, +}); +```