File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/routes/reference/reactive-utilities Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -43,13 +43,12 @@ Function executed outside the current tracking context.
4343
4444- ** Type:** ` T `
4545
46- Returns the value produced by ` fn ` .
46+ Returns the value produced by ` fn ` unchanged .
4747
4848## Behavior
4949
50- - Signals read inside ` untrack ` do not become dependencies of the surrounding computation.
51- - ` untrack ` does not disable reactivity globally; it only affects reads inside the provided function.
52- - Surrounding effects and memos do not subscribe to values read only inside ` untrack ` .
50+ - ` untrack ` only affects reads inside the provided function. Signals read there do not become dependencies of the surrounding computation.
51+ - On the server, ` untrack ` runs through the server runtime's ` batch ` implementation.
5352
5453## Examples
5554
You can’t perform that action at this time.
0 commit comments