Skip to content

Commit 2df9217

Browse files
committed
🐛 Fix axios serialize
1 parent 8ffdddf commit 2df9217

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

interapp-frontend/src/api/api_client.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ export class APIClient {
3030
baseURL: this.isReactServerComponent
3131
? `http://${process.env.NEXT_PUBLIC_BACKEND_HOST}:${process.env.NEXT_PUBLIC_BACKEND_PORT}/api`
3232
: process.env.NEXT_PUBLIC_AXIOS_BASE_URL,
33+
paramsSerializer: {
34+
indexes: null,
35+
}
3336
});
3437
this.instance.interceptors.request.use((req) => {
3538
if (

0 commit comments

Comments
 (0)