From 8517ecdaa0f5b4824c97c52ff8ea6eab8bc0755f Mon Sep 17 00:00:00 2001 From: Christian Bedon Date: Fri, 16 Aug 2024 12:05:21 -0500 Subject: [PATCH] fix: update selected comms value check --- src/components/Checkout/CheckoutDropInPaymentWrapper.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Checkout/CheckoutDropInPaymentWrapper.vue b/src/components/Checkout/CheckoutDropInPaymentWrapper.vue index d7021b2234..671bc70e18 100644 --- a/src/components/Checkout/CheckoutDropInPaymentWrapper.vue +++ b/src/components/Checkout/CheckoutDropInPaymentWrapper.vue @@ -239,7 +239,7 @@ export default { // Set email updates based on comms preference MP-271 let { emailUpdates } = this; if (this.enableRadioBtnExperiment) { - emailUpdates = this.selectedComms === '1'; + emailUpdates = this.selectedComms === 'on'; } this.$emit('opt-in', emailUpdates);