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 d0642a2 commit fae87edCopy full SHA for fae87ed
package.json
@@ -10,7 +10,7 @@
10
"type": "git",
11
"url": "https://github.com/bfanger/svelte-preprocess-react.git"
12
},
13
- "version": "0.12.0",
+ "version": "0.13.0",
14
"license": "MIT",
15
"type": "module",
16
"scripts": {
src/lib/sveltify.ts
@@ -82,13 +82,14 @@ export default function sveltify<P>(
82
props,
83
[
84
React.createElement("svelte-slot", {
85
+ key: "svelte-slot",
86
style: { display: "contents" },
87
dangerouslySetInnerHTML: { __html: html },
88
}),
89
...current.map((child, i) =>
90
React.createElement(
91
`ssr-portal${i}`,
- null,
92
+ { key: `ssr-portal${i}` },
93
React.createElement(child.reactComponent, child.props)
94
)
95
),
0 commit comments