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.