From 73293a721921c769d74e3c5e25f0c932d557521f Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Wed, 15 May 2024 10:05:27 -0400 Subject: [PATCH] CSR-2076 | Fix line item IDs mismatch --- src/store/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/store/index.js b/src/store/index.js index 5a153e731..dd8cf38af 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -2172,6 +2172,7 @@ export const actions = { }, saveSupportingItems(context, supportingItems) { + syncLineItemIds(supportingItems, context.state.order.lineItems.supportingItems); if (!deepEqual(supportingItems, context.state.order.lineItems.supportingItems)) { context.dispatch(storeActions.RESET_SERVICE_LOCATION_STATE_AND_DEPENDENCIES); }