Skip to content

Commit

Permalink
fix: changed the field name to align with api requirements (#1107)
Browse files Browse the repository at this point in the history
  • Loading branch information
zenit2001 authored Jul 4, 2024
1 parent 6268208 commit 8880715
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ const __RiskDataHelper = {
basketData[`riskdata.basket.item${itemNr}.brand`] = item.product
? item.product.brand
: '';
basketData[`riskdata.basket.item${itemNr}.manufacturerName`] =
item.product ? item.product.manufacturerName : '';
basketData[`riskdata.basket.item${itemNr}.manufacturer`] = item.product
? item.product.manufacturerName
: '';
basketData[`riskdata.basket.item${itemNr}.category`] =
item.product && item.product.primaryCategory
? item.product.primaryCategory.displayName
Expand Down

0 comments on commit 8880715

Please sign in to comment.