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 a469c39 commit 43457ccCopy full SHA for 43457cc
packages/svelte/src/internal/client/reactivity/forks.js
@@ -1,8 +1,9 @@
1
/** @import { Effect, Source } from '#client' */
2
+import { DIRTY } from '#client/constants';
3
import { noop } from '../../shared/utils.js';
4
import { flushSync } from '../runtime.js';
5
import { raf } from '../timing.js';
-import { internal_set, pending } from './sources.js';
6
+import { internal_set, mark_reactions, pending } from './sources.js';
7
8
/** @type {Set<Fork>} */
9
const forks = new Set();
@@ -16,7 +17,7 @@ export function remove_active_fork() {
16
17
18
/** Update `$effect.pending()` */
19
function update_pending() {
- internal_set(pending, forks.size > 0);
20
+ // internal_set(pending, forks.size > 0);
21
}
22
23
let uid = 1;
0 commit comments