Skip to content

Commit 23127b6

Browse files
authored
chore(browser): Update comment for fetch transport (#16617)
Replaces #16532 Updates the comment in the browser fetch transport to explain why we do not need to suppress tracing there.
1 parent f2dd0dc commit 23127b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/browser/src/transports/fetch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function makeFetchTransport(
4545
}
4646

4747
try {
48-
// TODO: This may need a `suppressTracing` call in the future when we switch the browser SDK to OTEL
48+
// Note: We do not need to suppress tracing here, becasue we are using the native fetch, instead of our wrapped one.
4949
return nativeFetch(options.url, requestOptions).then(response => {
5050
pendingBodySize -= requestSize;
5151
pendingCount--;

0 commit comments

Comments
 (0)