result_list array as list of countries

This commit was merged in pull request #531.
This commit is contained in:
victorAnumudu
2023-12-18 09:53:42 +01:00
parent fa565437f0
commit b3db82000b
6 changed files with 32 additions and 34 deletions
@@ -25,7 +25,7 @@ function NairaWithdraw({
},
newAccount: {
country: wallet.walletCountry
? wallet.walletCountry[0][0]
? wallet.walletCountry[0]?.code
: wallet.country,
bank: state?.newAccount?.amount || "",
accountNumber: state?.newAccount?.amount || "",
@@ -34,7 +34,6 @@ function NairaWithdraw({
city: state?.newAccount?.amount || "",
},
};
const [errorMsgs, setErrorMsgs] = useState(initialValues);
let [sendMoneyFee, setSendMoneyFee] = useState({
@@ -69,7 +68,7 @@ function NairaWithdraw({
// Handling card change
const handleBankOptions = (event) => {
let bankCountry = wallet.walletCountry
? wallet.walletCountry[0][0]
? wallet.walletCountry[0]?.code
: wallet.country
setBankName((prev) => ({ loading: true, data: [] }));
apiCall
@@ -120,7 +119,7 @@ function NairaWithdraw({
}
setAllCountries((prev) => ({
loading: false,
data: res.data.signup_country,
data: res.data.result_list,
}));
})
.catch((error) => {
@@ -287,7 +286,7 @@ function NairaWithdraw({
getRecipients();
}, []);
console.log("Testing Wallet Country", wallet?.walletCountry[0][0]);
console.log("Testing Wallet Country", wallet?.walletCountry[0]?.code);
return (
<ModalCom action={action} situation={situation} className="edit-popup">
@@ -560,7 +559,7 @@ function NairaWithdraw({
</label>
<div className="w-full text-base p-2 text-dark-gray dark:text-white border border-slate-300 outline-0 flex-[0.6] rounded-full h-[42px] overflow-hidden relative font-medium leading-6 bg-clip-padding tracking-[1.5px] flex items-center pointer-events-none">
<span className="text-slate-500 text-lg italic">
{wallet.walletCountry[0][1]}
{wallet.walletCountry[0]?.country}
</span>
</div>
{/* <select
+2 -2
View File
@@ -41,13 +41,13 @@ const WalletRoutes = () => {
apiCall
.getSignupCountryData()
.then((res) => {
if (res.data.internal_return < 0) {
if (res?.data?.internal_return < 0) {
setAllCountries((prev) => ({ loading: false, data: [] }));
return;
}
setAllCountries((prev) => ({
loading: false,
data: res.data.signup_country,
data: res.data.result_list,
}));
})
.catch((error) => {
+2 -2
View File
@@ -35,8 +35,8 @@ export default function WalletItemCard({ walletItem, payment, countries }) {
};
const currentWalletCurrency = countries
.map((country) => country)
.filter((country) => country[0] === walletItem.country);
// .map((country) => country)
.filter((country) => country.code === walletItem.country);
const image = walletItem.code
? `${walletItem.code.toLowerCase()}.svg`
@@ -35,8 +35,8 @@ export default function WalletItemCardFamily({ walletItem, payment, countries })
};
const currentWalletCurrency = countries
.map((country) => country)
.filter((country) => country[0] === walletItem.country);
// .map((country) => country)
.filter((country) => country.code === walletItem.country);
const image = walletItem.code
? `${walletItem.code.toLowerCase()}.svg`