fix: component render bug
This commit is contained in:
parent
38733a9e20
commit
344fba56bb
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ export function createAstroNode(
|
||||||
if (Object.hasOwn(components, node.name)) {
|
if (Object.hasOwn(components, node.name)) {
|
||||||
const componentRenderer = components[node.name];
|
const componentRenderer = components[node.name];
|
||||||
const component =
|
const component =
|
||||||
'Component' in componentRenderer ? componentRenderer.component : componentRenderer;
|
'component' in componentRenderer ? componentRenderer.component : componentRenderer;
|
||||||
const props =
|
const props =
|
||||||
'props' in componentRenderer
|
'props' in componentRenderer
|
||||||
? componentRenderer.props({
|
? componentRenderer.props({
|
||||||
|
|
Loading…
Reference in a new issue