From 6490ace7c7c077e2a19bfd0811a1e99a1c56de3f Mon Sep 17 00:00:00 2001 From: Nikhil <118773738+pablohashescobar@users.noreply.github.com> Date: Sun, 13 Oct 2024 00:44:52 +0530 Subject: [PATCH] fix: intake issue (#5813) --- .../components/inbox/modals/create-edit-modal/create-root.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/core/components/inbox/modals/create-edit-modal/create-root.tsx b/web/core/components/inbox/modals/create-edit-modal/create-root.tsx index 7df5203f2..c60684dcc 100644 --- a/web/core/components/inbox/modals/create-edit-modal/create-root.tsx +++ b/web/core/components/inbox/modals/create-edit-modal/create-root.tsx @@ -120,7 +120,7 @@ export const InboxIssueCreateRoot: FC = observer((props) await createInboxIssue(workspaceSlug, projectId, payload) .then(async (res) => { if (uploadedAssetIds.length > 0) { - await fileService.updateBulkProjectAssetsUploadStatus(workspaceSlug, projectId, res?.id ?? "", { + await fileService.updateBulkProjectAssetsUploadStatus(workspaceSlug, projectId, res?.issue.id ?? "", { asset_ids: uploadedAssetIds, }); setUploadedAssetIds([]);