From 306821e8220ecb8ca7dad917e4e49d631b60dedb Mon Sep 17 00:00:00 2001 From: Yashasvi Bajpai <33063622+yashasvibajpai@users.noreply.github.com> Date: Tue, 7 Jan 2025 10:50:27 +0530 Subject: [PATCH] fix: stitched events through redis in pixel --- src/v1/sources/shopify/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v1/sources/shopify/config.js b/src/v1/sources/shopify/config.js index 0fddfab7726..5b9f343978a 100644 --- a/src/v1/sources/shopify/config.js +++ b/src/v1/sources/shopify/config.js @@ -42,7 +42,7 @@ const RUDDER_ECOM_MAP = { orders_create: 'Order Created', }; -const SERVERSIDE_STITCHED_EVENTS = Object.keys(RUDDER_ECOM_MAP); +const SERVERSIDE_STITCHED_EVENTS = Object.values(RUDDER_ECOM_MAP); const contextualFieldMappingJSON = JSON.parse( fs.readFileSync(path.resolve(__dirname, 'pixelEventsMappings', 'contextualFieldMapping.json')),