Skip to content

Commit a63f726

Browse files
authored
send to helper redundant extra argument fix (#5)
1 parent 8d5edd7 commit a63f726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/targets/javascript/axios.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module.exports = function (source, options) {
6464
code.blank()
6565
.push('const data = new FormData();')
6666

67-
code = constructAppendedParamsCode(code, source.postData.params, code, { isBrowser: true, dataVarName: 'data' })
67+
code = constructAppendedParamsCode(code, source.postData.params, { isBrowser: true, dataVarName: 'data' })
6868

6969
reqOpts.data = 'data'
7070
break

0 commit comments

Comments
 (0)