Added Credit Limit & Pending Jobs Bug & removed reload for credit

This commit is contained in:
2023-07-27 11:34:27 +01:00
parent 994060d929
commit 28ab1116e9
6 changed files with 23 additions and 26 deletions
+8 -4
View File
@@ -1,5 +1,4 @@
import React, { useState } from "react";
import { useNavigate } from "react-router-dom";
import usersService from "../../../services/UsersService";
import Icons from "../../Helpers/Icons";
import InputCom from "../../Helpers/Inputs/InputCom";
@@ -15,10 +14,9 @@ function AddFundPop({
setConfirmCredit,
walletItem,
}) {
const navigate = useNavigate();
const apiCall = new usersService();
let countryWallet = walletItem?.country;
const { payment, currency } = _payment;
const { currency } = _payment;
const [inputError, setInputError] = useState("");
let __awaitComponent = confirmCredit.show.awaitConfirm;
@@ -44,6 +42,12 @@ function AddFundPop({
return;
}
if (Number(input) * 100 > Number(walletItem?.transfer_limit)) {
setInputError("Credit limit has been exceeded");
setTimeout(() => setInputError(""), 5000);
return;
}
if (isNaN(input)) {
setConfirmCredit((prev) => ({
...prev,
@@ -113,7 +117,7 @@ function AddFundPop({
value={input}
inputHandler={handleChange}
/>
<p className="text-base text-red-500 h-5">
<p className="text-base text-red-500 italic h-5">
{inputError && inputError}
</p>
</div>