diff --git a/packages/svelte/src/internal/client/dom/blocks/each.js b/packages/svelte/src/internal/client/dom/blocks/each.js index dd6e2f6222..3ab26a4afe 100644 --- a/packages/svelte/src/internal/client/dom/blocks/each.js +++ b/packages/svelte/src/internal/client/dom/blocks/each.js @@ -96,6 +96,7 @@ function each(anchor_node, collection, flags, key_fn, render_fn, fallback_fn, re // depending on whether we're in hydration mode or not if (!hydrating) { // Create a new anchor on the fly because there's none due to the optimization + // TODO this will happen every time the fallback renders... anchor = empty(); block.a.appendChild(anchor); } else {