From 4504de93020f4d3c189976c3e09fb2f3e2761753 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Thu, 7 Nov 2024 19:53:54 +0000 Subject: [PATCH] fix(spotlight): Export spotlightBrowserIntegration from the main browser package Follow up to #13263 where we forgot to export it from the main package :facepalm: --- packages/browser/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index 10b974dc35e8..56724b926c5b 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -74,3 +74,4 @@ export { export type { Span } from '@sentry/types'; export { makeBrowserOfflineTransport } from './transports/offline'; export { browserProfilingIntegration } from './profiling/integration'; +export { spotlightBrowserIntegration } from './integrations/spotlight';