From 0c8064a5cf97bf57a7e512003eef44524e4a0aee Mon Sep 17 00:00:00 2001 From: aliraza556 Date: Mon, 2 Dec 2024 07:46:24 +0500 Subject: [PATCH] fix: remove action wrapper from ticket update payload --- src/store/main.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/store/main.ts b/src/store/main.ts index dc9cb421..5fb95c6a 100644 --- a/src/store/main.ts +++ b/src/store/main.ts @@ -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) {