fix to arePrereqsValid method

This commit is contained in:
Kroell 2023-03-06 16:05:00 -05:00
parent e8942ac25d
commit a933503b04

View file

@ -119,9 +119,13 @@ export default {
}); });
}, },
methods: { methods: {
arePagePrerequisiteValid() { arePagePrerequisitesValid() {
return true; if (useMainStore().order.vehicle.carId) {
return true;
}
return false;
}, },
async forwardButtonAction() { async forwardButtonAction() {
return this.navigateForward(); return this.navigateForward();
}, },