diff --git a/.changeset/strange-games-pull.md b/.changeset/strange-games-pull.md new file mode 100644 index 0000000000..eb4e47fd65 --- /dev/null +++ b/.changeset/strange-games-pull.md @@ -0,0 +1,5 @@ +--- +'@backstage/frontend-plugin-api': patch +--- + +Remove unnecessary config object on IconBundleBlueprint diff --git a/packages/frontend-plugin-api/api-report.md b/packages/frontend-plugin-api/api-report.md index 1b89aeac74..fc62582af0 100644 --- a/packages/frontend-plugin-api/api-report.md +++ b/packages/frontend-plugin-api/api-report.md @@ -1519,14 +1519,8 @@ export const IconBundleBlueprint: ExtensionBlueprint<{ {} >; inputs: {}; - config: { - icons: string; - test: string; - }; - configInput: { - test: string; - icons?: string | undefined; - }; + config: {}; + configInput: {}; dataRefs: { icons: ConfigurableExtensionDataRef< { diff --git a/packages/frontend-plugin-api/src/blueprints/IconBundleBlueprint.ts b/packages/frontend-plugin-api/src/blueprints/IconBundleBlueprint.ts index 51b3b6d633..303d1a3fd2 100644 --- a/packages/frontend-plugin-api/src/blueprints/IconBundleBlueprint.ts +++ b/packages/frontend-plugin-api/src/blueprints/IconBundleBlueprint.ts @@ -26,12 +26,6 @@ export const IconBundleBlueprint = createExtensionBlueprint({ kind: 'icon-bundle', attachTo: { id: 'api:app/icons', input: 'icons' }, output: [iconsDataRef], - config: { - schema: { - icons: z => z.string().default('blob'), - test: z => z.string(), - }, - }, factory: (params: { icons: { [key in string]: IconComponent } }) => [ iconsDataRef(params.icons), ],