We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36e2469 commit 0c0fd47Copy full SHA for 0c0fd47
packages/svelte/src/internal/client/runtime.js
@@ -816,9 +816,7 @@ function process_effects(effect, collected_effects) {
816
current_effect.f ^= CLEAN;
817
} else {
818
try {
819
- // If the effect is dirty, then we need to update it, it might also turn inert
820
- // because of async work during calling check_dirtiness
821
- if (check_dirtiness(current_effect) && (current_effect.f & INERT) === 0) {
+ if (check_dirtiness(current_effect)) {
822
update_effect(current_effect);
823
}
824
} catch (error) {
0 commit comments