Skip to content

Commit 43457cc

Browse files
committed
.
1 parent a469c39 commit 43457cc

File tree

1 file changed

+3
-2
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+3
-2
lines changed

packages/svelte/src/internal/client/reactivity/forks.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
/** @import { Effect, Source } from '#client' */
2+
import { DIRTY } from '#client/constants';
23
import { noop } from '../../shared/utils.js';
34
import { flushSync } from '../runtime.js';
45
import { raf } from '../timing.js';
5-
import { internal_set, pending } from './sources.js';
6+
import { internal_set, mark_reactions, pending } from './sources.js';
67

78
/** @type {Set<Fork>} */
89
const forks = new Set();
@@ -16,7 +17,7 @@ export function remove_active_fork() {
1617

1718
/** Update `$effect.pending()` */
1819
function update_pending() {
19-
internal_set(pending, forks.size > 0);
20+
// internal_set(pending, forks.size > 0);
2021
}
2122

2223
let uid = 1;

0 commit comments

Comments
 (0)