diff --git a/.changeset/spotty-ravens-whisper.md b/.changeset/spotty-ravens-whisper.md new file mode 100644 index 0000000000..6c52f22111 --- /dev/null +++ b/.changeset/spotty-ravens-whisper.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-badges': patch +--- + +Update README to fix invalid import command diff --git a/plugins/badges/README.md b/plugins/badges/README.md index 06c0e3e413..202b26762d 100644 --- a/plugins/badges/README.md +++ b/plugins/badges/README.md @@ -88,8 +88,7 @@ yarn --cwd packages/app add @backstage/plugin-badges This plugin requires explicit registration, so you will need to add it to your App's `plugins.ts` file: ```ts -// ... -export { badgesPlugin } from '@backstage/plugin-badges'; +import { badgesPlugin } from '@backstage/plugin-badges'; ``` If you don't have a `plugins.ts` file see: [troubleshooting](#troubleshooting)