diff --git a/src/store/index.js b/src/store/index.js index 89cc0d32d..56fbad95b 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -3310,6 +3310,8 @@ export const actions = { (context.state.order.vehicle.make.toLowerCase() === "bmw" && context.state.order.vehicle.year < 2010) || (context.state.order.vehicle.make.toLowerCase() === "volkswagen" && + context.state.order.vehicle.year < 2010) || + (context.state.order.vehicle.make.toLowerCase() === "audi" && context.state.order.vehicle.year < 2010) ) return true; diff --git a/src/store/store.spec.js b/src/store/store.spec.js index 2a3927655..71e2ec894 100644 --- a/src/store/store.spec.js +++ b/src/store/store.spec.js @@ -4248,6 +4248,7 @@ describe("isVinOptionalVehicle", () => { ["2016", "volkswagen", false], ["2016", "audi", false], ["2016", "porsche", true], + ["2009", "audi", true], ]; test.each(testVehicles)( "%s %s should skip vin lookup is %s",