File tree Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ export function makeFetchTransport(options: BunTransportOptions): Transport {
15
15
const requestOptions : RequestInit = {
16
16
body : request . body ,
17
17
method : 'POST' ,
18
- referrerPolicy : 'origin' ,
19
18
headers : options . headers ,
20
19
} ;
21
20
Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ export function makeEdgeTransport(options: VercelEdgeTransportOptions): Transpor
83
83
const requestOptions : RequestInit = {
84
84
body : request . body ,
85
85
method : 'POST' ,
86
- referrerPolicy : 'origin' ,
87
86
headers : options . headers ,
88
87
...options . fetchOptions ,
89
88
} ;
Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ describe('Edge Transport', () => {
57
57
expect ( mockFetch ) . toHaveBeenLastCalledWith ( DEFAULT_EDGE_TRANSPORT_OPTIONS . url , {
58
58
body : serializeEnvelope ( ERROR_ENVELOPE , new TextEncoder ( ) ) ,
59
59
method : 'POST' ,
60
- referrerPolicy : 'origin' ,
61
60
} ) ;
62
61
} ) ;
63
62
You can’t perform that action at this time.
0 commit comments