Skip to content

Commit 29e2c85

Browse files
committed
fix
1 parent 4be5488 commit 29e2c85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,10 +606,10 @@ export function get(signal) {
606606

607607
if (DEV) {
608608
if (current_async_effect) {
609-
var tracking = (current_async_effect.f & REACTION_IS_UPDATING) !== 0 && !untracking;
609+
var tracking = (current_async_effect.f & REACTION_IS_UPDATING) !== 0;
610610
var was_read = current_async_effect.deps?.includes(signal);
611611

612-
if (!tracking && !was_read) {
612+
if (!tracking && !untracking && !was_read) {
613613
w.await_reactivity_loss(/** @type {string} */ (signal.label));
614614

615615
var trace = get_stack('TracedAt');

0 commit comments

Comments
 (0)