Skip to content

Commit

Permalink
fix: added content type to framegear post frame request (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonGambas authored Feb 24, 2024
1 parent 70e3641 commit d0ecfa2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions framegear/app/api/postFrame/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ export async function POST(req: NextRequest) {

const res = await fetch(postUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(debugPayload),
});

Expand Down

0 comments on commit d0ecfa2

Please sign in to comment.