diff --git a/src/store/index.js b/src/store/index.js index ba2194d6..4c597f70 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -556,10 +556,8 @@ export const useMainStore = defineStore({ const { vin } = vehicle; // create a new array to avoid mutating state - console.log('compatible format'); const glassArrayForPayload = convertGlassPieceToBackEndCompatibleFormat(glassArray); - console.log('before api call'); const response = await globalMethods.callHttpClient({ method: endpoints.GetPartsOrQuestions.method, endpoint: endpoints.GetPartsOrQuestions.url, @@ -571,7 +569,6 @@ export const useMainStore = defineStore({ } }); - console.log('about to convert'); // Flatten location and name properties response.data.partsOrQuestions = convertGlassPieceNamingFromApi(response.data.partsOrQuestions);