trace_render_cascade
Identify why a React commit occurred and see all components that re-rendered, sorted by duration, to expose cascading updates such as a context change propagating to many children.
Instructions
For a specific React commit (render cycle), shows what triggered it and lists every component that re-rendered as a result, sorted by actual duration descending. Reveals propagation — e.g. a context update cascading into 40 children. Call get_render_summary first to find total_commits, then use 0-based commit_index.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| commit_index | Yes | Zero-based index of the commit to inspect | |
| profile_path | Yes | Absolute path to the React DevTools Profiler export (.json) |