Skip to content

Commit c77b0e8

Browse files
committed
lint
1 parent bb67f1c commit c77b0e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ export function hydrate_block_anchor(anchor_node, is_controlled) {
7171
}
7272
set_current_hydration_fragment(fragment);
7373
} else {
74-
const firstChild = /** @type {Element | null} */ (target_node.firstChild);
75-
set_current_hydration_fragment(firstChild === null ? [] : [firstChild]);
74+
const first_child = /** @type {Element | null} */ (target_node.firstChild);
75+
set_current_hydration_fragment(first_child === null ? [] : [first_child]);
7676
}
7777
}
7878
}

0 commit comments

Comments
 (0)