diff --git a/src/store/index.js b/src/store/index.js index 53ec7479..9b983519 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -2378,13 +2378,13 @@ export const useMainStore = defineStore({ billToAccountNumber: this.billToAccountNumber, providerNumber: this.providerNumber, appointmentType: appointmentType, - pricedLineItems: pricedLineItems, + pricedLineItems: getLineItemsFlattened(pricedLineItems), serviceLocation: { city: isMobileApt ? serviceLocationCity : null, state: isMobileApt ? serviceLocationState : null, zipCode: isMobileApt ? serviceLocationZipCode : null, }, - serverData: lineItemServerData ? encodeURIComponent(lineItemServerData) : "", + serverData: lineItemServerData ? lineItemServerData : "", }, }).then((response) => { this.order.lineItems.serverData = response.data.serverData;