From 2519b717320ba956cb43728757e0fc73d769cde7 Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Mon, 9 Oct 2023 10:48:09 -0400 Subject: [PATCH] CSR-1383: fix for repair orders --- src/layouts/payment-method/payment-method.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 385436cda..cc688ca27 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -166,7 +166,7 @@ export default { ); const storeLineItems = store.getters.lineItems; const cartItems = [ - ...storeLineItems.glassParts, + ...clonedGlassParts, ...storeLineItems.supportingItems, ...storeLineItems.vaps, ];