Skip to content

Commit

Permalink
Update src/cdk/v2/destinations/bluecore/utils.js
Browse files Browse the repository at this point in the history
Co-authored-by: Sankeerth <[email protected]>
  • Loading branch information
shrouti1507 and sanpj2292 authored Apr 17, 2024
1 parent e0eb9a0 commit e00bd35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cdk/v2/destinations/bluecore/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const mapCustomProperties = (message) => {
);
break;
case 'TRACK':
customProperties.properties.customer = extractCustomFields(
const customerProperties = extractCustomFields(

Check failure on line 184 in src/cdk/v2/destinations/bluecore/utils.js

View workflow job for this annotation

GitHub Actions / Check for formatting & lint errors

Unexpected lexical declaration in case block
message,
{},
['traits', 'context.traits'],
Expand All @@ -193,6 +193,7 @@ const mapCustomProperties = (message) => {
['properties'],
TRACK_EXCLUSION_LIST,
);
customProperties.properties.customer = customerProperties;
break;
default:
break;
Expand Down

0 comments on commit e00bd35

Please sign in to comment.