commenting out this part for now as we are not implementing this yet

This commit is contained in:
Bill Richardson 2026-06-29 13:27:00 -04:00
parent 2fca5d2fa5
commit 1cb0ee4119

View file

@ -270,6 +270,11 @@ export default {
return;
}
/*
* If the vehicle is vinRequired, we need to call getPartsOrQuestionsVinRequired() to get the parts or questions.
* If the vehicle is not vinRequired, we can call getPartsOrQuestions() to get the parts or questions.
*/
/*
if (this.mainStore.order.vehicle.vinRequired) {
try {
const partsOrQuestionsResponse = await this.getPartsOrQuestionsVinRequired();
@ -288,6 +293,7 @@ export default {
return;
}
*/
const partsOrQuestionsResponse = await this.getPartsOrQuestions();
// Comes from vehicleQuestionsMixin.navigateForward()