Skip to content

Commit

Permalink
Merge pull request stakwork#682 from aliraza556/fix-ticket-review-req…
Browse files Browse the repository at this point in the history
…uest-body-structure

🐛 Fix ticket review submission by correcting request payload structure
  • Loading branch information
humansinstitute authored Dec 2, 2024
2 parents ca4f605 + 06572c6 commit d9e2a7f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/store/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3710,9 +3710,7 @@ export class MainStore {
'x-jwt': info.tribe_jwt,
'Content-Type': 'application/json'
},
body: JSON.stringify({
ticket
})
body: JSON.stringify(ticket)
});

if (!response.ok) {
Expand Down

0 comments on commit d9e2a7f

Please sign in to comment.