From 05b8d5bdb8adde955734e85396bfa333906da7e8 Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Thu, 2 Nov 2023 16:34:29 -0400 Subject: [PATCH] typo fixes --- src/store/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/store/index.js b/src/store/index.js index 76669828..55739046 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -536,21 +536,21 @@ export const useMainStore = defineStore({ } const orderItemsArray = []; - const manuaGlassNamesArray = []; + const manualGlassNamesArray = []; const glassInformation = this.order.damage.glassToReplace; glassInformation?.forEach((glassPiece) => { const glassPieceObject = { name: glassPiece?.glassLocation?.toUpperCase() }; orderItemsArray.push(glassPieceObject); - manuaGlassNamesArray.push(glassPiece.glassLocation); + manualGlassNamesArray.push(glassPiece.glassLocation); }); if (this.order.customer.address.state === 'FL' && this.order.damage.isRepair) { const damageLocationObject = { name: damageLocationsSelected.WINDSHIELD.toUpperCase() }; orderItemsArray.push(damageLocationObject); - manuaGlassNamesArray.push(damageLocationsSelected.WINDSHIELD); + manualGlassNamesArray.push(damageLocationsSelected.WINDSHIELD); } return new Promise((resolve, reject) => { @@ -571,7 +571,7 @@ export const useMainStore = defineStore({ vehicle: { endorsements: endorsementAnswersForPayload }, - manualGlassNames: manuaGlassNamesArray + manualGlassNames: manualGlassNamesArray }, policy: { policyState: this.order.customer.address.state,