diff --git a/packages/client/src/stores/components.js b/packages/client/src/stores/components.js index 2500ea2a41..a07c9da996 100644 --- a/packages/client/src/stores/components.js +++ b/packages/client/src/stores/components.js @@ -121,7 +121,8 @@ const createComponentStore = () => { if (!state.customComponentManifest) { state.customComponentManifest = {} } - state.customComponentManifest[schema.schema.name] = { + const componentName = `plugin/${schema.schema.name}/1.0.0` + state.customComponentManifest[componentName] = { schema, Component, }