From 872972d6e9ece6b1d1f1ff0e8b6ddc6dba8c0cfa Mon Sep 17 00:00:00 2001 From: Frank Calise Date: Wed, 13 Dec 2023 12:11:37 -0500 Subject: [PATCH] docs(error-boundary): fix links (#2586 by @frankcalise) --- docs/concept/Error-Boundary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concept/Error-Boundary.md b/docs/concept/Error-Boundary.md index 261f68132..58d538ec9 100644 --- a/docs/concept/Error-Boundary.md +++ b/docs/concept/Error-Boundary.md @@ -37,7 +37,7 @@ This allows us to show alternative UI components when an error is thrown on chil Inside `componentDidCatch` of an `ErrorBoundary` component is also a great place to report to monitoring services like BugSnag, Sentry, or Honeybadger, so you can be alerted when errors are happening for users. -Ignite provides utilities in [`/app/utils/crash-reporting.ts`](../boilerplate/app/utils/crash-reporting.ts) to integrate these services into your app. +Ignite provides utilities in [`/app/utils/crash-reporting.ts`](https://github.com/infinitered/ignite/blob/master/boilerplate/app/utils/crash-reporting.ts) to integrate these services into your app. ## Examples