Skip to content

Commit

Permalink
Fix entry order
Browse files Browse the repository at this point in the history
  • Loading branch information
rap1ds committed May 27, 2024
1 parent 51ed948 commit 8c22486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interceptors/multipart_request.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class MultipartRequest {
}

const formDataObj = entries(params).reduce((fd, entry) => {
const [val, key] = entry;
const [key, val] = entry;
fd.append(key, val);
return fd;
}, new FormData());
Expand Down

0 comments on commit 8c22486

Please sign in to comment.