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 1a71f61 commit 45a67eeCopy full SHA for 45a67ee
packages/svelte/src/internal/client/runtime.js
@@ -832,7 +832,7 @@ export function capture_signals(fn) {
832
export function invalidate_inner_signals(fn) {
833
var captured = capture_signals(() => untrack(fn));
834
835
- for (signal of captured) {
+ for (var signal of captured) {
836
// Go one level up because derived signals created as part of props in legacy mode
837
if ((signal.f & LEGACY_DERIVED_PROP) !== 0) {
838
for (const dep of /** @type {Derived} */ (signal).deps || []) {
0 commit comments