Skip to content

Commit

Permalink
fix: removed header quotations
Browse files Browse the repository at this point in the history
  • Loading branch information
demeyerthom authored and mvantellingen committed Dec 20, 2024
1 parent 741d794 commit d4475db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/late-cameras-sip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@labdigital/graphql-codegen-bruno": patch
---

Removed header quotations
2 changes: 1 addition & 1 deletion packages/bruno/src/bruno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const asBruno = async (
file.addElement(
"headers",
Object.entries(config.headers ?? {}).map(
([key, value]) => `${key}: "${value}"`,
([key, value]) => `${key}: ${value}`,
),
);

Expand Down

0 comments on commit d4475db

Please sign in to comment.