diff --git a/src/constants/store-actions.js b/src/constants/store-actions.js
index 1861ac2c1..daa65d2cf 100644
--- a/src/constants/store-actions.js
+++ b/src/constants/store-actions.js
@@ -86,8 +86,7 @@ const storeActions = {
SAVE_SUPPORTING_ITEMS_SUPPRESSING_STATE_RESETTING:
"saveSupportingItemsSuppressingStateResetting",
SAVE_VAPS: "saveVaps",
- SAVE_PROMOS: "savePromos",
- SAVE_INACTIVE_PROMOS: "saveInactivePromos",
+ SAVE_ACTIVE_AND_OR_INACTIVE_PROMOS: "saveActiveAndOrInactivePromos",
SAVE_CUSTOMER_DETAILS: "saveCustomerDetails",
SAVE_SERVICE_LOCATION_TECH_NOTES: "saveServiceLocationTechNotes",
SAVE_CCTOKEN: "saveCCToken",
diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue
index 7390495f2..a44ef3c07 100644
--- a/src/fmg-components/cart/cart.vue
+++ b/src/fmg-components/cart/cart.vue
@@ -221,7 +221,7 @@ export default {
let cartItem = null;
cartItem = {
- name: "Some Kind of Promo", // get from CMS?
+ name: promoLineItem.promoCode,
category: cartItemCategories.PROMOS,
cartItemType: promoLineItem.partType,
isDisplayed: true,
@@ -230,6 +230,7 @@ export default {
(promoLineItem.laborAmount ?? 0) +
(promoLineItem.sellingPrice ?? 0),
salesTax: promoLineItem.salesTax,
+ lineItems: [],
};
promoLineItem.cartItemType = cartItem.cartItemType;
diff --git a/src/fmg-components/funnel-header/funnel-header.vue b/src/fmg-components/funnel-header/funnel-header.vue
index d9c598bb4..26a9652d4 100644
--- a/src/fmg-components/funnel-header/funnel-header.vue
+++ b/src/fmg-components/funnel-header/funnel-header.vue
@@ -5,18 +5,18 @@
-
-
-
-
+
+
+
+
+