Skip to content

Commit

Permalink
/deploy sit
Browse files Browse the repository at this point in the history
  • Loading branch information
jbyrne committed Aug 8, 2024
1 parent b26642f commit 3ce11ba
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions server/client/harmony.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ async function subset(job, accessToken) {
// add granule names to form data
const formData = new FormData();

granuleIds.forEach((granuleId) => {
formData.append('granuleId', granuleId);
});
const granuleIdsString = granuleIds.join(',');
formData.append('granuleId', granuleIdsString);
if(merge) url += `&concatenate=true`;

let response, text;
Expand Down

0 comments on commit 3ce11ba

Please sign in to comment.