Removing comments

This commit is contained in:
Michaela Brydon 2023-10-11 23:44:02 -04:00
parent 558444bcd0
commit 14487d10b4

View file

@ -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);