Skip to content

Commit

Permalink
fixed data layer
Browse files Browse the repository at this point in the history
  • Loading branch information
iconstantin-bd committed Dec 16, 2024
1 parent 9e35215 commit 605bd1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _src/blocks/products-sideview/products-sideview.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function updateBuyLink(block) {
}

function renderPrice(block, _firstProduct, secondProduct) {
const variant = '7-1';
const variant = '12-1';
const priceElement = document.createElement('div');
priceElement.classList.add('price-element-wrapper');

Expand Down
2 changes: 1 addition & 1 deletion _src/scripts/libs/store/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ class Vlaicu {
const devicesObj = {
currency_iso: productVariation.currency,
product_id: Constants.PRODUCT_ID_MAPPINGS[id],
platform_product_id: Constants.PRODUCT_ID_MAPPINGS[id],
platform_product_id: productInfoResponse.platformProductId || Constants.PRODUCT_ID_MAPPINGS[id],
promotion: isReceivedPromotionValid ?
productInfoResponse.campaign :
campaignId,
Expand Down

0 comments on commit 605bd1d

Please sign in to comment.