Skip to content

Commit fa3b293

Browse files
committed
more canary stuff
1 parent bb8213b commit fa3b293

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

src/content/blog/2025/09/30/react-19-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ React 19.2 adds a new set of [custom tracks](https://developer.chrome.com/docs/d
7272
</picture>
7373
</div>
7474

75-
For more information, see the [React Performance Tracks docs](/learn/react-performance-tracks).
75+
For more information, see the [React Performance Tracks docs](/reference/dev-tools/react-performance-tracks).
7676

7777
---
7878

src/content/reference/developer-tooling/react-performance-tracks.md renamed to src/content/reference/dev-tools/react-performance-tracks.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
11
---
22
title: React Performance tracks
3-
version: canary
43
---
54

6-
<Canary>
7-
8-
**This feature is currently only available in React’s Canary and Experimental channels.**
9-
10-
[Learn more about React’s release channels here.](/community/versioning-policy#all-release-channels)
11-
12-
</Canary>
13-
145
<Intro>
156

167
React Performance tracks are specialized custom entries that appear on the Performance panel's timeline in your browser developer tools.
@@ -66,7 +57,7 @@ The Scheduler is an internal React concept used for managing tasks with differen
6657
Every render pass consists of multiple phases that you can see on a timeline:
6758

6859
- **Update** - this is what caused a new render pass.
69-
- **Render** - React renders the updated subtree by calling render functions of components. You can see the rendered components subtree on [Components track](/reference/developer-tooling/react-performance-tracks#components), which follows the same color scheme.
60+
- **Render** - React renders the updated subtree by calling render functions of components. You can see the rendered components subtree on [Components track](#components), which follows the same color scheme.
7061
- **Commit** - After rendering components, React will submit the changes to the DOM and run layout effects, like [`useLayoutEffect`](/reference/react/useLayoutEffect).
7162
- **Remaining Effects** - React runs passive effects of a rendered subtree. This usually happens after the paint, and this is when React runs hooks like [`useEffect`](/reference/react/useEffect). One known exception is user interactions, like clicks, or other discrete events. In this scenario, this phase could run before the paint.
7263

src/sidebarReference.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,11 +383,11 @@
383383
},
384384
{
385385
"hasSectionHeader": true,
386-
"sectionHeader": "Developer tooling"
386+
"sectionHeader": "React DevTools"
387387
},
388388
{
389389
"title": "React Performance tracks",
390-
"path": "/reference/developer-tooling/react-performance-tracks"
390+
"path": "/reference/dev-tools/react-performance-tracks"
391391
},
392392
{
393393
"hasSectionHeader": true,

0 commit comments

Comments
 (0)