Skip to content

Commit 936c150

Browse files
committed
lint
1 parent e1cf85a commit 936c150

File tree

1 file changed

+2
-2
lines changed
  • packages/svelte/src/internal/client/dom/blocks

1 file changed

+2
-2
lines changed

packages/svelte/src/internal/client/dom/blocks/each.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,11 +387,11 @@ function reconcile(array, state, anchor, render_fn, flags, get_key) {
387387
var controlled_anchor = (flags & EACH_IS_CONTROLLED) !== 0 && length === 0 ? anchor : null;
388388

389389
if (is_animated) {
390-
for (var i = 0; i < to_destroy.length; i += 1) {
390+
for (i = 0; i < to_destroy.length; i += 1) {
391391
to_destroy[i].a?.measure();
392392
}
393393

394-
for (var i = 0; i < to_destroy.length; i += 1) {
394+
for (i = 0; i < to_destroy.length; i += 1) {
395395
to_destroy[i].a?.fix();
396396
}
397397
}

0 commit comments

Comments
 (0)