diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 4aee95a2f..75f4454c5 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -51,6 +51,7 @@ import funnelSubHeader from "@/common-components/funnel-sub-header/funnel-sub-he import radioServicePackage from "@/ux-components/radio-service-package/radio-service-package"; import cashOrInsuranceQuestion from "./cash-or-insurance-question/cash-or-insurance-question"; import textBlock from "@/common-components/text-block/text-block"; +import store from "@/store"; import { fetchCmsContentForPage } from "@/helpers/cms-content-helper"; import { Form } from "vee-validate"; @@ -74,7 +75,10 @@ export default { }, methods: { arePagePrerequisitesValid() { - return true; + if (store.getters.order.damage.isRepair || store.getters.order.lineItems.glassParts.length > 0) { + return true; + } + return false; } }, computed: {