Skip to content

Commit

Permalink
Fix Asana API usage
Browse files Browse the repository at this point in the history
  • Loading branch information
muodov committed May 17, 2024
1 parent fd9d823 commit 76e19c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/asana-create-tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const asanaCreateTasks = async () => {
if (extractedProjects) {
for (const projectGidAndSection of extractedProjects.split(',')) {
const [projectGid, sectionGid] = projectGidAndSection.split(':')
await asana.tasks.addProjectForTask(gid, { project: projectGid, insert_after: null, section: sectionGid })
await asana.tasks.addProjectForTask(gid, { project: projectGid, section: sectionGid })
}
}
}
Expand Down

0 comments on commit 76e19c3

Please sign in to comment.