We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5555014 commit 4a62b95Copy full SHA for 4a62b95
src/lib/seam/connect/axios.ts
@@ -15,6 +15,7 @@ export const createAxiosClient = (
15
return axios.create({
16
baseURL: options.endpoint,
17
withCredentials: isSeamHttpOptionsWithClientSessionToken(options),
18
+ ...(paramsSerializer != null ? { paramsSerializer } : {}),
19
...options.axiosOptions,
20
headers: {
21
...getAuthHeaders(options),
@@ -23,3 +24,5 @@ export const createAxiosClient = (
23
24
},
25
})
26
}
27
+
28
+const paramsSerializer = axios.defaults.paramsSerializer
0 commit comments