Skip to content

Commit

Permalink
Merge pull request stakwork#680 from aliraza556/fix-ticket-update-pay…
Browse files Browse the repository at this point in the history
…load-structure

🐛 Fix: Remove Action Wrapper from Ticket Update Payload to Match Backend Schema
  • Loading branch information
humansinstitute authored Dec 2, 2024
2 parents fa2c6ab + 0c8064a commit d6d6f36
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/store/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3673,10 +3673,7 @@ export class MainStore {
'x-jwt': info.tribe_jwt,
'Content-Type': 'application/json'
},
body: JSON.stringify({
action: 'update',
ticket: initialTicketData
})
body: JSON.stringify(initialTicketData)
});

if (!response.ok) {
Expand Down

0 comments on commit d6d6f36

Please sign in to comment.