Skip to content

Commit

Permalink
fix(clevertap): invalid parameters ordering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mihir-4116 committed Oct 16, 2023
1 parent 1de7d94 commit a70d4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v0/destinations/clevertap/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ const processRouterDest = (inputs, reqMetadata) => {
batchedEvents.forEach((batch) => {
const batchedRequest = generateClevertapBatchedPayload(batch.events, batch.destination);
batchResponseList.push(
getSuccessRespEvents(batchedRequest, batch.metadata, batch.destination, reqMetadata),
getSuccessRespEvents(batchedRequest, batch.metadata, batch.destination)
);
});
}
Expand Down

0 comments on commit a70d4db

Please sign in to comment.