From e83de28e36fb3e4464f0f624795f5064ff1cc989 Mon Sep 17 00:00:00 2001 From: Tim Jacomb <21194782+timja@users.noreply.github.com> Date: Thu, 18 Aug 2022 09:59:14 +0100 Subject: [PATCH] Fix typo in create-app package Signed-off-by: Tim Jacomb <21194782+timja@users.noreply.github.com> --- .changeset/happy-kiwis-look.md | 5 +++++ .../default-app/packages/backend/src/plugins/auth.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/happy-kiwis-look.md diff --git a/.changeset/happy-kiwis-look.md b/.changeset/happy-kiwis-look.md new file mode 100644 index 0000000000..c7c82954ee --- /dev/null +++ b/.changeset/happy-kiwis-look.md @@ -0,0 +1,5 @@ +--- +'@backstage/create-app': patch +--- + +Fix typo diff --git a/packages/create-app/templates/default-app/packages/backend/src/plugins/auth.ts b/packages/create-app/templates/default-app/packages/backend/src/plugins/auth.ts index 159116d7b8..77eb6aae21 100644 --- a/packages/create-app/templates/default-app/packages/backend/src/plugins/auth.ts +++ b/packages/create-app/templates/default-app/packages/backend/src/plugins/auth.ts @@ -25,7 +25,7 @@ export default async function createPlugin( // This particular resolver makes all users share a single "guest" identity. // It should only be used for testing and trying out Backstage. // - // If you want to use a production ready resolver you can switch to the + // If you want to use a production ready resolver you can switch to // the one that is commented out below, it looks up a user entity in the // catalog using the GitHub username of the authenticated user. // That resolver requires you to have user entities populated in the catalog,