transfer fund implemented

This commit was merged in pull request #30.
This commit is contained in:
victorAnumudu
2023-04-28 15:23:43 +01:00
parent 67b639c64f
commit aa9482bb95
5 changed files with 139 additions and 95 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ function TransferFund({payment, wallet}) {
<h2 className='my-4 py-2 text-slate-900 dark:text-white text-xl lg:text-2xl font-medium'>
{wallet.data.map(item => {
if(item.description == 'Naira'){
return `Withdraw from Naira Wallet : ${item.symbol}${(item.amount*1).toFixed(2)}`
return `Withdraw from Naira Wallet : ${item.symbol}${(item.amount*0.01).toFixed(2)}`
}
})}
</h2>