File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export const w = new Signal.subtle.Watcher(() => {
9
9
scheduleRevalidate ( ) ;
10
10
} ) ;
11
11
12
+ export let signalsToUnwatch : Signal . Computed < any > [ ] = [ ] ;
12
13
export function setResolveRender ( value : ( ) => void ) {
13
14
resolveRender = value ;
14
15
}
@@ -36,6 +37,7 @@ export async function syncDom() {
36
37
w . getPending ( ) . forEach ( ( cell ) => {
37
38
cell . get ( ) ;
38
39
} ) ;
40
+ w . unwatch ( ...signalsToUnwatch ) ;
39
41
w . watch ( ) ;
40
42
setIsRendering ( false ) ;
41
43
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import {
10
10
import { isFn } from './shared' ;
11
11
import { Signal } from "signal-polyfill" ;
12
12
13
- import { w } from './signals' ;
13
+ import { signalsToUnwatch , w } from './signals' ;
14
14
type maybeDestructor = undefined | ( ( ) => void ) ;
15
15
type maybePromise = undefined | Promise < void > ;
16
16
@@ -98,6 +98,6 @@ export function opcodeFor(tag: AnyCell, op: tagOp) {
98
98
w . watch ( computed ) ;
99
99
computed . get ( ) ;
100
100
return ( ) => {
101
- w . unwatch ( computed ) ;
101
+ signalsToUnwatch . push ( computed ) ;
102
102
} ;
103
103
}
You can’t perform that action at this time.
0 commit comments