diff --git a/packages/browser/src/transports/fetch.ts b/packages/browser/src/transports/fetch.ts index 05ec0f2e211a..d21ae82486ec 100644 --- a/packages/browser/src/transports/fetch.ts +++ b/packages/browser/src/transports/fetch.ts @@ -45,7 +45,7 @@ export function makeFetchTransport( } try { - // TODO: This may need a `suppressTracing` call in the future when we switch the browser SDK to OTEL + // Note: We do not need to suppress tracing here, becasue we are using the native fetch, instead of our wrapped one. return nativeFetch(options.url, requestOptions).then(response => { pendingBodySize -= requestSize; pendingCount--;