Added Credit Limit & Pending Jobs Bug & removed reload for credit
This commit is contained in:
@@ -136,6 +136,12 @@ function AddFundDollars(props) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (Number(props.input) * 100 > Number(props.walletItem?.transfer_limit)) {
|
||||
props.setInputError("Credit limit has been exceeded");
|
||||
setTimeout(() => props.setInputError(""), 5000);
|
||||
return;
|
||||
}
|
||||
|
||||
if (tab === "previous") {
|
||||
// To check if card is empty
|
||||
if (Object.keys(prevCardDetails).length === 0) {
|
||||
|
||||
Reference in New Issue
Block a user