Skip to content

Commit 8111f04

Browse files
committed
fix
1 parent 71826c0 commit 8111f04

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,6 @@ export function update_reaction(reaction) {
493493
new_deps = previous_deps;
494494
skipped_deps = previous_skipped_deps;
495495
untracked_writes = previous_untracked_writes;
496-
console.log(untracked_writes)
497496
active_reaction = previous_reaction;
498497
skip_reaction = previous_skip_reaction;
499498
reaction_sources = previous_reaction_sources;
@@ -804,7 +803,7 @@ function process_effects(root) {
804803
try {
805804
active_reaction = effect;
806805
if (check_dirtiness(effect)) {
807-
update_effect(effect, previous_active_reaction);
806+
update_effect(effect);
808807
}
809808
} catch (error) {
810809
handle_error(error, effect, null, effect.ctx);

0 commit comments

Comments
 (0)