diff --git a/src/modules/checkout/components/payment-container/index.tsx b/src/modules/checkout/components/payment-container/index.tsx index 25ff46de5..a428b1d6b 100644 --- a/src/modules/checkout/components/payment-container/index.tsx +++ b/src/modules/checkout/components/payment-container/index.tsx @@ -52,19 +52,28 @@ const PaymentContainer: React.FC = ({ disabled={disabled} > -
-

- {PaymentInfoMap[paymentSession.provider_id].title} -

- - {PaymentInfoMap[paymentSession.provider_id].description} - - {selected && ( -
- -
- )} -
+ {PaymentInfoMap[paymentSession.provider_id] ? ( +
+

+ {PaymentInfoMap[paymentSession.provider_id].title} +

+ + { + PaymentInfoMap[paymentSession.provider_id] + .description + } + + {selected && ( +
+ +
+ )} +
+ ) : ( + <> + )} )