Skip to content

Commit 5bd79e8

Browse files
author
Omri Peleg
committed
Fix Typo
1 parent ff8363e commit 5bd79e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/targets/rapidql/rapidql.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ module.exports = function (source, options) {
1414
code.push('// For more information about RapidQL, checkout docs.rapidql.com!');
1515
code.push('');
1616
code.blank();
17-
code.push('// For more information about RapidQL, checkout docs.rapidql.com!');
1817
code.push("const RapidQL = require('RapidQL');");
1918
code.push('let rql = new RapidQL({');
2019
code.push('});');
2120
code.push('');
2221
code.push('rql.query(`{');
2322
code.push(` Http.${(source.method || '').toLowerCase()}(`);
24-
code.push(` url:"${helpers.quote(source.fullUrl)}"`);
23+
code.push(` url:"${source.fullUrl}"`);
2524

2625
if (source.headers.length) {
2726
code.push(` headers : {\n${Object.entries(source.allHeaders).map(([key, val]) => `"${key}":"${val}"`).join(",\n")}\n }`);

0 commit comments

Comments
 (0)