From 70e2552f6594073cc4ca33c45da613dcd98ae575 Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Fri, 10 Nov 2023 13:31:04 -0500 Subject: [PATCH] make string uppercase --- src/store/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) => {