Skip to content

Commit f5f3f61

Browse files
committed
use correct conditional
1 parent 150fa53 commit f5f3f61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/remix/src/utils/instrumentServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export function startRequestHandlerTransaction(
330330
metadata: {
331331
source,
332332
// Only attach baggage if it's defined
333-
...(isSentryBaggageEmpty(baggage) && { baggage }),
333+
...(!isSentryBaggageEmpty(baggage) && { baggage }),
334334
},
335335
});
336336

0 commit comments

Comments
 (0)