removed unwanted signup country API

This commit is contained in:
victorAnumudu
2024-03-09 08:13:52 +01:00
parent 735d13b440
commit dccbe76c5b
3 changed files with 5 additions and 40 deletions
+4 -4
View File
@@ -12,7 +12,7 @@ import FamilyWalletRedeemOptions from "./FamilyWalletRedeemOptions";
/**
* Renders a list of wallet items or a loading spinner depending on the state of the `wallet` object.
*/
export default function FamilyWalletBox({ wallet, payment, countries }) {
export default function FamilyWalletBox({ wallet, payment }) {
const { loading, data } = wallet;
const { userDetails } = useSelector((state) => state.userDetails);
@@ -46,13 +46,13 @@ export default function FamilyWalletBox({ wallet, payment, countries }) {
<button className="py-0.5 px-1 mb-1 rounded-lg border border-orange-500" key={item.wallet_uid} name={item.code}>{item.code}</button>
))}
</div>
<div className="p-5 rounded-2xl bg-white-opacity"
<div className="p-5 rounded-2xl bg-white-opacity min-h-[240px]"
style={{
background: `url(${background}) 0% 0% / cover no-repeat`,
}}
>
{/* image */}
<div className="min-w-[100px] min-h-[100px] max-w-min md:max-w-[150px] max-h-min md:max-h-[150px] rounded-full bg-[#e3e3e3] flex justify-center items-center">
<div className="min-w-[100px] min-h-[100px] max-w-min md:max-w-[120px] max-h-min md:max-h-[120px] rounded-full bg-[#e3e3e3] flex justify-center items-center">
<img
src={localImgLoad(`images/currency/${image}`)}
className="w-full h-full"
@@ -65,7 +65,7 @@ export default function FamilyWalletBox({ wallet, payment, countries }) {
</p>
</div>
</div>
<div className="p-5 w-full rounded-2xl bg-white dark:bg-dark-white text-black dark:text-white h-full min-h-[240px]">
<div className="p-5 w-full rounded-2xl bg-white dark:bg-dark-white text-black dark:text-white h-full min-h-[240px] max-h-96">
<h1 className="text-xl font-bold text-black dark:text-white">Recent Activities</h1>
</div>
</div>