From 34a8a279091be22c23328b91ea867ce634af5140 Mon Sep 17 00:00:00 2001 From: pablohashescobar Date: Sun, 13 Oct 2024 00:43:09 +0530 Subject: [PATCH] fix: intake issue --- .../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 7df5203f25b..c60684dcc02 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([]);