diff --git a/.changeset/strong-nails-do.md b/.changeset/strong-nails-do.md new file mode 100644 index 0000000000..07f77c76ef --- /dev/null +++ b/.changeset/strong-nails-do.md @@ -0,0 +1,5 @@ +--- +'@backstage/dev-utils': patch +--- + +Fix a bug where an instance of the SCM integrations API wasn't being provided properly to the dev app. diff --git a/packages/dev-utils/src/devApp/render.tsx b/packages/dev-utils/src/devApp/render.tsx index 1785fcbe38..06975df20f 100644 --- a/packages/dev-utils/src/devApp/render.tsx +++ b/packages/dev-utils/src/devApp/render.tsx @@ -154,7 +154,7 @@ class DevAppBuilder { } const app = createApp({ - apis: this.apis, + apis, plugins: this.plugins, bindRoutes: ({ bind }) => { for (const plugin of this.plugins ?? []) {