Skip to content

Commit 0f50af8

Browse files
fix(adapter): pass fetchOptions to fetch function (#6883)
Co-authored-by: Jay <[email protected]>
1 parent ee7799e commit 0f50af8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/adapters/fetch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export default isFetchSupported && (async (config) => {
167167
credentials: isCredentialsSupported ? withCredentials : undefined
168168
});
169169

170-
let response = await fetch(request);
170+
let response = await fetch(request, fetchOptions);
171171

172172
const isStreamResponse = supportsResponseStream && (responseType === 'stream' || responseType === 'response');
173173

0 commit comments

Comments
 (0)