Skip to content

Commit

Permalink
Update getit extension
Browse files Browse the repository at this point in the history
- lint
- make response pretty
  • Loading branch information
tobikli committed Feb 19, 2025
1 parent 61c5613 commit 6e3f2ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/getit/src/getit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function RequestResult({ values }: { values: { url: string; type: string; body?:
**URL:** ${values.url}
**Type:** ${values.type}
${values.body ? `**Body:**\n\`\`\`json\n${values.body}\n\`\`\`` : ""}
${values.body ? `**Body:**\n\`\`\`json\n${JSON.stringify(values.body, null, 2)}\n\`\`\`` : ""}
---
### Response:
Expand Down

0 comments on commit 6e3f2ed

Please sign in to comment.