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 f4f2809 commit 2b1440bCopy full SHA for 2b1440b
1 file changed
packages/browser/src/tracing/browserTracingIntegration.ts
@@ -17,7 +17,6 @@ import {
17
TransactionSource,
18
WebFetchHeaders,
19
consoleSandbox,
20
- isBrowser,
21
} from '@sentry/core';
22
import {
23
GLOBAL_OBJ,
@@ -238,7 +237,7 @@ let _hasBeenInitialized = false;
238
237
* We explicitly export the proper type here, as this has to be extended in some cases.
239
*/
240
export const browserTracingIntegration = ((_options: Partial<BrowserTracingOptions> = {}) => {
241
- if (_hasBeenInitialized && isBrowser()) {
+ if (_hasBeenInitialized) {
242
consoleSandbox(() => {
243
// eslint-disable-next-line no-console
244
console.warn('Multiple browserTracingIntegration instances are not supported.');
0 commit comments