From f6c7ca50b07ac28cf4e39c7be942ee6fab0a3306 Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Tue, 9 Jun 2026 16:35:02 -0400 Subject: [PATCH] Change default variation for Cybersource/Adyen --- src/layouts/payment-method/payment-method.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index b0347f581..810414b96 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -567,14 +567,14 @@ export default { this.dispatchStoreAction(storeActions.RESET_SAVE_SESSION_PROMISE); - const shouldUseAdyen = experimentMixin.methods.hasSettingEqualTo( + const shouldUseCybersource = experimentMixin.methods.hasSettingEqualTo( experimentSettings.USE_ADYEN_PAYMENT, - "true" + "false" ); - const scenarioName = shouldUseAdyen - ? this.navigationScenarios.CLICKED_PAY_NOW_ADYEN - : this.navigationScenarios.CLICKED_PAY_NOW; + const scenarioName = shouldUseCybersource + ? this.navigationScenarios.CLICKED_PAY_NOW + : this.navigationScenarios.CLICKED_PAY_NOW_ADYEN; this.$router.navigateWithoutSaving(scenarioName, this.pageName); },