Skip to content

Commit acad606

Browse files
committed
update
1 parent 799f08e commit acad606

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/routes/reference/reactive-utilities/untrack.mdx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)