Skip to content

Commit 34ab23d

Browse files
authored
fix(remix): Remove deprecated ErrorBoundary options. (#13170)
1 parent f9a311c commit 34ab23d

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

docs/platforms/javascript/guides/remix/manual-setup.mdx

-16
Original file line numberDiff line numberDiff line change
@@ -124,22 +124,6 @@ function App() {
124124
export default withSentry(App);
125125
```
126126

127-
You can disable or configure `ErrorBoundary` using a second parameter to `withSentry`.
128-
129-
```tsx
130-
withSentry(App, {
131-
wrapWithErrorBoundary: false,
132-
});
133-
134-
// or
135-
136-
withSentry(App, {
137-
errorBoundaryOptions: {
138-
fallback: <p>An error has occurred</p>,
139-
},
140-
});
141-
```
142-
143127
### Server-side Configuration
144128

145129
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.

0 commit comments

Comments
 (0)