We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb03e1c commit 6c6647fCopy full SHA for 6c6647f
packages/svelte/src/internal/client/runtime.js
@@ -231,8 +231,8 @@ export function check_dirtiness(reaction) {
231
}
232
233
// Unowned signals should never be marked as clean unless they
234
- // are used within an active_effect
235
- if (!is_unowned || active_effect !== null) {
+ // are used within an active_effect without skip_reaction
+ if (!is_unowned || (active_effect !== null && !skip_reaction)) {
236
set_signal_status(reaction, CLEAN);
237
238
0 commit comments