diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue
index d5ef09542..cd50a8fda 100644
--- a/src/fmg-components/cart/cart.vue
+++ b/src/fmg-components/cart/cart.vue
@@ -16,8 +16,7 @@
-
- {{ screenReaderPackagePriceText }}
+
{{ getFormattedAmount("", packagePrice) }}
@@ -64,40 +63,25 @@
{{ recycleFeeCartItem.name }}
-
{{ screenReaderRecycleFeeText }}{{ getFormattedAmount(cartItem.category, cartItem.subTotal) }}
+
{{ getFormattedAmount(cartItem.category, cartItem.subTotal) }}
{{ subtotalText }}{{ screenReaderSubTotalText }}{{ getFormattedAmount("", subTotal) }}
+ >{{ getFormattedAmount("", subTotal) }}
{{ salesTaxText }}{{ screenReaderSalesTaxText }}{{ getFormattedAmount("", salesTax) }}
+ >{{ getFormattedAmount("", salesTax) }}
{{ amountPaidText }}{{ screenReaderAmountPaidText }}{{ getFormattedAmount("", amountPaid) }}
+ >{{ getFormattedAmount("", amountPaid) }}
{{ amountDueText }}{{ screenReaderTotalAmountDueText }}{{ getFormattedAmount("", amountDue) }}
+ >{{ getFormattedAmount("", amountDue) }}
diff --git a/src/layouts/confirmation/confirmation.vue b/src/layouts/confirmation/confirmation.vue
index 51546a97e..32c36c161 100644
--- a/src/layouts/confirmation/confirmation.vue
+++ b/src/layouts/confirmation/confirmation.vue
@@ -300,7 +300,7 @@ export default {
return serviceLocationReqs && scheduleReqs && customerReqs;
},
forwardButtonAction() {
- window.location.assign("//www.safelite.com/");
+ window.location.assign(location.protocol + "//" + location.host);
},
},
components: {
diff --git a/src/layouts/payment/payment.vue b/src/layouts/payment/payment.vue
index 6de58dc3c..559a44ee2 100644
--- a/src/layouts/payment/payment.vue
+++ b/src/layouts/payment/payment.vue
@@ -532,7 +532,7 @@ export default {
}
cartItems.forEach((item) => {
- if (item.name !== null) {
+ if (item.name !== null && item.category != "promos") {
lineItems.push(`${item.name}|${(item.salesTax + item.subTotal).toFixed(2)}|1`);
}
});