diff --git a/src/store/index.js b/src/store/index.js index cc1a7a4e..6a989010 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -529,10 +529,10 @@ export const useMainStore = defineStore({ const manualGlassNamesArray = []; const glassInformation = this.order.damage.glassToReplace; glassInformation?.forEach((glassPiece) => { - manualGlassNamesArray.push(glassPiece.glassLocation); + manualGlassNamesArray.push(glassPiece.glassLocation.toUpperCase()); }); if (this.order.customer.address.state === 'FL' && this.order.damage.isRepair) { - manualGlassNamesArray.push(damageLocationsSelected.WINDSHIELD); + manualGlassNamesArray.push(damageLocationsSelected.WINDSHIELD.toUpperCase()); } return new Promise((resolve, reject) => {