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 {
1515 const requestOptions : RequestInit = {
1616 body : request . body ,
1717 method : 'POST' ,
18- referrerPolicy : 'origin' ,
1918 headers : options . headers ,
2019 } ;
2120
Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ export function makeEdgeTransport(options: VercelEdgeTransportOptions): Transpor
8383 const requestOptions : RequestInit = {
8484 body : request . body ,
8585 method : 'POST' ,
86- referrerPolicy : 'origin' ,
8786 headers : options . headers ,
8887 ...options . fetchOptions ,
8988 } ;
Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ describe('Edge Transport', () => {
5757 expect ( mockFetch ) . toHaveBeenLastCalledWith ( DEFAULT_EDGE_TRANSPORT_OPTIONS . url , {
5858 body : serializeEnvelope ( ERROR_ENVELOPE , new TextEncoder ( ) ) ,
5959 method : 'POST' ,
60- referrerPolicy : 'origin' ,
6160 } ) ;
6261 } ) ;
6362
You can’t perform that action at this time.
0 commit comments