From 6fe9213486aed01872c83cfaf5c8130c8450cc99 Mon Sep 17 00:00:00 2001 From: Alex Humphries Date: Thu, 11 Jun 2026 11:33:45 -0400 Subject: [PATCH] INSR-9835: Get availableVaps from the right place --- src/layouts/payment-method/payment-method.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 792592a9..b98c7ded 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -304,7 +304,7 @@ export default { }, offerWipers() { const orderHasWipers = this.mainStore.lineItems.vaps?.some((part) => part.partType.toLowerCase().includes('wiper')); - const wipersAvailable = this.mainStore.availableVaps?.some((part) => part.partType.toLowerCase().includes('wiper')); + const wipersAvailable = this.mainStore.order.availableVaps?.some((part) => part.partType.toLowerCase().includes('wiper')); return !orderHasWipers && wipersAvailable; }, wiperOfferPanel() {