From 5ecd1e5c42ed0df90c060abf6d8545d7d05a8963 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Wed, 22 Oct 2025 14:58:36 -0400 Subject: [PATCH] Redo rain repel changes --- src/layouts/payment-method/payment-method.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 3f7124f84..2c51f42a1 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -218,8 +218,8 @@ export default { ) : Promise.resolve([]); - const rainDefensePromise = baseMixin.methods.dispatchStoreActionWithLogging( - storeActions.GET_RAIN_DEFENSE, + const rainRepelPromise = baseMixin.methods.dispatchStoreActionWithLogging( + storeActions.GET_RAIN_REPEL, null, "payment-method" ); @@ -265,7 +265,7 @@ export default { []); const allLineItems = [ - resultMap.rainDefense, + resultMap.rainRepel, ...supportingItems, ...availableFrontWipers, ...availableRearWipers, @@ -278,7 +278,7 @@ export default { ); const availableVaps = [ - resultMap.rainDefense, + resultMap.rainRepel, ...availableFrontWipers, ...availableRearWipers, ];