Skip to content

Commit

Permalink
fix: add missing backslashes to curl command
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasheartman committed Feb 10, 2022
1 parent 9998e4c commit a125ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/components/ApiRequest.jsx
Expand Up @@ -39,7 +39,7 @@ ${prettyPayload}
{`
curl -H "Content-Type: application/json" \\
-H "Authorization: <API-token>" \\
-X ${verbUpper}
-X ${verbUpper} \\
-d '${prettyPayload}' \\
<unleash-url>/${url}
`.trim()}
Expand Down

0 comments on commit a125ea1

Please sign in to comment.