Skip to content

Commit a30e1f9

Browse files
authored
update link to fault tolerance blog post (#6142)
this is the canonical link now 🫡
1 parent 292534e commit a30e1f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/reference/react/Component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1393,7 +1393,7 @@ Then you can wrap a part of your component tree with it:
13931393
13941394
If `Profile` or its child component throws an error, `ErrorBoundary` will "catch" that error, display a fallback UI with the error message you've provided, and send a production error report to your error reporting service.
13951395
1396-
You don't need to wrap every component into a separate error boundary. When you think about the [granularity of error boundaries,](https://aweary.dev/fault-tolerance-react/) consider where it makes sense to display an error message. For example, in a messaging app, it makes sense to place an error boundary around the list of conversations. It also makes sense to place one around every individual message. However, it wouldn't make sense to place a boundary around every avatar.
1396+
You don't need to wrap every component into a separate error boundary. When you think about the [granularity of error boundaries,](https://www.brandondail.com/posts/fault-tolerance-react) consider where it makes sense to display an error message. For example, in a messaging app, it makes sense to place an error boundary around the list of conversations. It also makes sense to place one around every individual message. However, it wouldn't make sense to place a boundary around every avatar.
13971397
13981398
<Note>
13991399

0 commit comments

Comments
 (0)