fix(devtools): update profiling links to react.dev#36095
Open
MorikawaSouma wants to merge 1 commit intofacebook:mainfrom
Open
fix(devtools): update profiling links to react.dev#36095MorikawaSouma wants to merge 1 commit intofacebook:mainfrom
MorikawaSouma wants to merge 1 commit intofacebook:mainfrom
Conversation
The profiling documentation links in DevTools were pointing to the legacy reactjs.org domain via fb.me short URLs. Updated all references to point to the current react.dev documentation. Fixes facebook#31878 Changed: - ProfilingNotSupported.js: fb.me/react-devtools-profiling → react.dev/reference/profiler - NoProfilingData.js: fb.me/react-devtools-profiling → react.dev/reference/profiler - TimelineNotSupported.js: fb.me/react-devtools-profiling → react.dev/reference/profiler The old reactjs.org/link/profiling URL redirects to an outdated site that displays a banner stating it's no longer updated.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates the profiling documentation links in React DevTools to point to the current react.dev domain instead of the legacy reactjs.org links.
Problem
The profiling error messages in DevTools displayed links pointing to
fb.me/react-devtools-profilingwhich redirects to the old reactjs.org site. This site now shows a banner stating "This site is no longer updated. Go to react.dev".This creates a poor user experience for developers trying to learn about React profiling.
Issue: Fixes #31878
Solution
Updated all profiling-related links in DevTools to point to
https://react.dev/reference/profiler:Testing
Before
After
This is a documentation-only change with no functional impact on the codebase.