From 14487d10b4d3cc50a01a543d22c22bacd657b8a6 Mon Sep 17 00:00:00 2001 From: Michaela Brydon Date: Wed, 11 Oct 2023 23:44:02 -0400 Subject: [PATCH] Removing comments --- src/store/index.js | 3 --- 1 file changed, 3 deletions(-) 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);