Some fixes

This commit is contained in:
2023-07-17 11:29:50 +01:00
parent 54bf020c55
commit 89c5936212
3 changed files with 38 additions and 29 deletions
@@ -11,7 +11,7 @@ function ThePaymentText({ value, type }) {
type === "new"
? cardDetails.cardNum[0] === "4"
? "Visa"
: value[0] === "5"
: value[0] == "5"
? "Master"
: "ATM"
: value.description;
@@ -223,7 +223,7 @@ function ConfirmAddFund({
amount: amount * 100,
cardnumber: cardNum.replace(/\s/g, ""),
credit_reference,
cvc: cvv,
cvc: String(cvv),
description: address,
exp_month: expirationMonth,
exp_year: expirationYear,