Digits Fixed and SignOut text variable
This commit is contained in:
@@ -382,7 +382,11 @@ function AddFundDollars(props) {
|
||||
expireMonth.map((item, index) => (
|
||||
<option
|
||||
key={index}
|
||||
value={item.value}
|
||||
value={
|
||||
Number(item.value) < 10
|
||||
? "0" + item.value
|
||||
: item.value
|
||||
}
|
||||
>
|
||||
{item.name}
|
||||
</option>
|
||||
|
||||
Reference in New Issue
Block a user