From cbe1e2dc349eefb41c1fc3cf13d0495690347b7e Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Tue, 17 Jun 2025 12:21:53 +0200 Subject: [PATCH] chore(browser): Update comment for fetch transport --- packages/browser/src/transports/fetch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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--;