From 1cb0ee411906bfd1a73cfab002e20f1bc7eedd56 Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Mon, 29 Jun 2026 13:27:00 -0400 Subject: [PATCH] commenting out this part for now as we are not implementing this yet --- src/layouts/vin-lookup/vin-lookup.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index 57a462bb..1729c3c7 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -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()