From 3cf7256e5192ba099b325177775c45aeb2cd6cad Mon Sep 17 00:00:00 2001 From: Onur Temizkan Date: Mon, 31 Mar 2025 14:45:14 +0000 Subject: [PATCH] fix(remix): Remove deprecated `ErrorBoundary` options. --- .../javascript/guides/remix/manual-setup.mdx | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/docs/platforms/javascript/guides/remix/manual-setup.mdx b/docs/platforms/javascript/guides/remix/manual-setup.mdx index e58cdf17669bac..70696565dd74ab 100644 --- a/docs/platforms/javascript/guides/remix/manual-setup.mdx +++ b/docs/platforms/javascript/guides/remix/manual-setup.mdx @@ -124,22 +124,6 @@ function App() { export default withSentry(App); ``` -You can disable or configure `ErrorBoundary` using a second parameter to `withSentry`. - -```tsx -withSentry(App, { - wrapWithErrorBoundary: false, -}); - -// or - -withSentry(App, { - errorBoundaryOptions: { - fallback:

An error has occurred

, - }, -}); -``` - ### Server-side Configuration Create an instrumentation file (named here as `instrument.server.mjs`) in your project. Add your initialization code in this file for the server-side SDK.