Changed Naira Wallet Country Display

This commit was merged in pull request #442.
This commit is contained in:
2023-10-16 13:43:48 +01:00
parent 8702728ffa
commit 21843c4bc7
6 changed files with 94 additions and 61 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import WalletItemCard from "./WalletItemCard";
/**
* Renders a list of wallet items or a loading spinner depending on the state of the `wallet` object.
*/
export default function WalletBox({ wallet, payment }) {
export default function WalletBox({ wallet, payment, countries }) {
const { loading, data } = wallet;
return (
@@ -18,7 +18,7 @@ export default function WalletBox({ wallet, payment }) {
) : (
data.length > 0 && data.map((item) => (
<div key={item.wallet_uid} className="lg:w-full h-full mb-10 lg:mb-0">
<WalletItemCard walletItem={item} payment={payment} />
<WalletItemCard walletItem={item} payment={payment} countries={countries} />
</div>
))
)}