Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
idanmiara committed Dec 17, 2024
1 parent 687b1da commit fb32679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda/executor.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const replacePlaceholders = (payload, index, mem) => {
return JSON.parse(
JSON.stringify(payload)
.replace(/\${index}/g, index) // Replace iteration index
.replace(/\${mem}/g, mem) // Replace memory value
.replace(/\${mem}/g, mem), // Replace memory value
);
};

Expand Down

0 comments on commit fb32679

Please sign in to comment.