Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/renderers/shared/fiber/ReactFiberErrorLogger.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ function logCapturedError(capturedError: CapturedError): void {
`Recreating the tree from scratch failed so React will unmount the tree.`;
}
} else {
// TODO Link to componentDidCatch() documentation once it exists.
errorBoundaryMessage =
'Consider adding an error boundary to your tree to customize error handling behavior.';
'Consider adding an error boundary to your tree to customize error handling behavior. ' +
'See https://fb.me/react-error-boundaries for more information.';
}

console.error(
Expand Down