Some fixes
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user