From 248d5c514c5b02ac48e4ce34dac80429fd6a90cc Mon Sep 17 00:00:00 2001 From: Emma Indal Date: Wed, 11 Sep 2024 14:08:38 +0200 Subject: [PATCH] remove config object on icon bundle blueprint Signed-off-by: Emma Indal --- .../src/blueprints/IconBundleBlueprint.ts | 6 ------ 1 file changed, 6 deletions(-) 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), ],