We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70d8bd7 commit 2b1d3b7Copy full SHA for 2b1d3b7
src/targets/rapidql/rapidql.js
@@ -24,7 +24,7 @@ module.exports = function (source, options) {
24
code.push(` url:"${helpers.quote(source.fullUrl)}"`);
25
26
if (source.headers.length) {
27
- lines.push(` headers : {\n${Object.entries(source.allHeaders).map(([key, val]) => `"${key}":"${val}"`).join(",\n")}\n }`);
+ code.push(` headers : {\n${Object.entries(source.allHeaders).map(([key, val]) => `"${key}":"${val}"`).join(",\n")}\n }`);
28
}
29
30
0 commit comments