diff --git a/packages/bruno-electron/src/ipc/network/index.js b/packages/bruno-electron/src/ipc/network/index.js index f63926991..e3b9be48a 100644 --- a/packages/bruno-electron/src/ipc/network/index.js +++ b/packages/bruno-electron/src/ipc/network/index.js @@ -454,7 +454,7 @@ const registerNetworkIpc = (mainWindow) => { // stringify the request url encoded params if (request.headers['content-type'] === 'application/x-www-form-urlencoded') { - request.data = qs.stringify(request.data); + request.data = qs.stringify(request.data, { arrayFormat: "repeat" }); } if (request.headers['content-type'] === 'multipart/form-data') {