From cb1f001bb021d36b4f3f70a668248a9040882703 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Fri, 8 Nov 2024 13:13:34 +0000 Subject: [PATCH] fix(spotlight): Export spotlightBrowserIntegration from the main browser package (#14208) 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';