Skip to content

Commit 45a67ee

Browse files
Update packages/svelte/src/internal/client/runtime.js
Co-authored-by: Simon H <[email protected]>
1 parent 1a71f61 commit 45a67ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/src/internal/client/runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ export function capture_signals(fn) {
832832
export function invalidate_inner_signals(fn) {
833833
var captured = capture_signals(() => untrack(fn));
834834

835-
for (signal of captured) {
835+
for (var signal of captured) {
836836
// Go one level up because derived signals created as part of props in legacy mode
837837
if ((signal.f & LEGACY_DERIVED_PROP) !== 0) {
838838
for (const dep of /** @type {Derived} */ (signal).deps || []) {

0 commit comments

Comments
 (0)