Skip to content

Commit 38976f3

Browse files
authored
fix: Make breadcrumbs option optional in WinterCGFetch integration (#10792)
1 parent 6170765 commit 38976f3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/vercel-edge/src/integrations/wintercg-fetch.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,7 @@ export const WinterCGFetch = convertIntegrationFnToClass(
131131
INTEGRATION_NAME,
132132
winterCGFetchIntegration,
133133
) as IntegrationClass<Integration & { setupOnce: () => void }> & {
134-
new (options?: {
135-
breadcrumbs: boolean;
136-
shouldCreateSpanForRequest?: (url: string) => boolean;
137-
}): Integration;
134+
new (options?: Partial<Options>): Integration;
138135
};
139136

140137
// eslint-disable-next-line deprecation/deprecation

0 commit comments

Comments
 (0)