We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e9023d commit 9b05ff5Copy full SHA for 9b05ff5
packages/tanstackstart-solid/src/server/index.ts
@@ -29,9 +29,7 @@ export function createStoreEnhancer() {
29
* A passthrough error boundary wrapper for the server that doesn't depend on any react. Error boundaries don't catch
30
* SSR errors so they should simply be a passthrough.
31
*/
32
-export function withErrorBoundary<P extends Record<string, unknown>>(
33
- WrappedComponent: Component<P>,
34
-): Component<P> {
+export function withErrorBoundary<P extends Record<string, unknown>>(WrappedComponent: Component<P>): Component<P> {
35
return WrappedComponent;
36
}
37
0 commit comments