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 42774df commit 1159b70Copy full SHA for 1159b70
packages/svelte/src/internal/client/operations.js
@@ -191,7 +191,7 @@ export function child_frag(node, is_text) {
191
const first_node = /** @type {Node[]} */ (node)[0];
192
193
// if an {expression} is empty during SSR, there might be no
194
- // text node to hydrate — we must therefore create one
+ // text node to hydrate — we must therefore create one
195
if (is_text && first_node?.nodeType !== 3) {
196
const text = document.createTextNode('');
197
current_hydration_fragment.unshift(text);
0 commit comments