Skip to content

Commit 22a0f83

Browse files
committed
Clarify comment about trace parent info
1 parent 56179ed commit 22a0f83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/nextjs/src/performance/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ type StartTransactionCb = (context: TransactionContext) => Transaction | undefin
2323
interface SentryEnhancedNextData extends NextData {
2424
// contains props returned by `getInitialProps` - except for `pageProps`, these are the props that got returned by `getServerSideProps` or `getStaticProps`
2525
props: {
26-
_sentryGetInitialPropsTraceData?: string; // trace id, if injected by server-side `getInitialProps`
26+
_sentryGetInitialPropsTraceData?: string; // trace parent info, if injected by server-side `getInitialProps`
2727
_sentryGetInitialPropsBaggage?: string; // baggage, if injected by server-side `getInitialProps`
2828
pageProps?: {
29-
_sentryGetServerSidePropsTraceData?: string; // trace id, if injected by server-side `getServerSideProps`
29+
_sentryGetServerSidePropsTraceData?: string; // trace parent info, if injected by server-side `getServerSideProps`
3030
_sentryGetServerSidePropsBaggage?: string; // baggage, if injected by server-side `getServerSideProps`
3131
};
3232
};

0 commit comments

Comments
 (0)