commenting out this part for now as we are not implementing this yet
This commit is contained in:
parent
2fca5d2fa5
commit
1cb0ee4119
1 changed files with 6 additions and 0 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue