Skip to content

Commit 760d006

Browse files
authored
fix(remix): Add missing client exports to server and cloudflare entries (#16341)
Resolves: #16298 Also exported `ErrorBoundary` and `browserTracingIntegration` from `cloudflare` entry.
1 parent cba6016 commit 760d006

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/remix/src/cloudflare/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export * from '@sentry/react';
88

99
export { captureRemixErrorBoundaryError } from '../client/errors';
1010
export { withSentry } from '../client/performance';
11+
export { ErrorBoundary, browserTracingIntegration } from '../client';
1112
export { makeWrappedCreateRequestHandler, sentryHandleError };
1213

1314
/**

packages/remix/src/index.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export * from './server';
2-
export { captureRemixErrorBoundaryError, withSentry } from './client';
2+
export { captureRemixErrorBoundaryError, withSentry, ErrorBoundary, browserTracingIntegration } from './client';
33

44
export type { SentryMetaArgs } from './utils/types';

0 commit comments

Comments
 (0)