We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5689c45 commit 5598bafCopy full SHA for 5598baf
packages/renderer-core/src/renderer/renderer.tsx
@@ -125,8 +125,7 @@ export default function rendererFactory(): IRenderComponent {
125
getComp() {
126
const { schema, components } = this.props;
127
const { componentName } = schema;
128
- const allComponents = { ...RENDERER_COMPS, ...components };
129
- let Comp = allComponents[componentName] || RENDERER_COMPS[`${componentName}Renderer`];
+ let Comp = components[componentName]
130
if (Comp && Comp.prototype) {
131
if (!(Comp.prototype instanceof BaseRenderer)) {
132
Comp = RENDERER_COMPS[`${componentName}Renderer`];
0 commit comments