From 69a15668f9a896414e4d6299b3bb0f3bdc1b139b Mon Sep 17 00:00:00 2001 From: Bill Randall Date: Thu, 28 Sep 2023 16:16:53 -0400 Subject: [PATCH] Use prod TSEP on the parallel prod environment --- .../paymentMethods/creditCardForm/creditCardForm.component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/components/paymentMethods/creditCardForm/creditCardForm.component.js b/src/common/components/paymentMethods/creditCardForm/creditCardForm.component.js index 1803802ad..6e152e545 100644 --- a/src/common/components/paymentMethods/creditCardForm/creditCardForm.component.js +++ b/src/common/components/paymentMethods/creditCardForm/creditCardForm.component.js @@ -138,7 +138,7 @@ class CreditCardController { }) // Send masked card number when card number is not updated : this.tsysService.getManifest() .mergeMap(data => { - const productionEnvironments = ['production', 'prodcloud'] + const productionEnvironments = ['production', 'prodcloud', 'preprod'] const actualEnvironment = this.envService.get() const ccpEnvironment = productionEnvironments.includes(actualEnvironment) ? 'production' : actualEnvironment