diff options
Diffstat (limited to 'packages/integrations/react/server-v17.js')
-rw-r--r-- | packages/integrations/react/server-v17.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/react/server-v17.js b/packages/integrations/react/server-v17.js index 551b350d5..522837a16 100644 --- a/packages/integrations/react/server-v17.js +++ b/packages/integrations/react/server-v17.js @@ -68,7 +68,7 @@ function renderToStaticMarkup(Component, props, { default: children, ...slotted newProps.children = React.createElement(StaticHtml, { // Adjust how this is hydrated only when the version of Astro supports `astroStaticSlot` hydrate: metadata.astroStaticSlot ? !!metadata.hydrate : true, - value: newChildren + value: newChildren, }); } const vnode = React.createElement(Component, newProps); |