Compare commits

..

1 Commits

Author SHA1 Message Date
victorAnumudu c24fbedf2c file link updated 2023-11-27 12:49:18 +01:00
3 changed files with 5 additions and 5 deletions
@@ -32,7 +32,7 @@ export default function ActiveJobMessage({ activeJobMesList }) {
<tbody> <tbody>
{activeJobMesList.data.map((item, index) => {activeJobMesList.data.map((item, index) =>
{ {
let imageLink = `${activeJobMesList?.image}${localStorage.getItem('session_token')}/contrats/${item.msg_uid}` let imageLink = `${activeJobMesList?.image}${localStorage.getItem('session_token')}/contracts/${item.msg_uid}`
return ( return (
<tr key={index} className='text-slate-500'> <tr key={index} className='text-slate-500'>
<td> <td>
@@ -224,7 +224,7 @@ function ConfirmAddFund({
// Create request data object with required parameters for making the payment // Create request data object with required parameters for making the payment
const reqData = { const reqData = {
amount: amount, amount: amount * 100,
card_uid, card_uid,
credit_reference, credit_reference,
currency, currency,
@@ -289,7 +289,7 @@ function ConfirmAddFund({
// Prepare request data // Prepare request data
const reqData = { const reqData = {
amount: amount, amount: amount * 100,
cardnumber: cardNum.replace(/\s/g, ""), cardnumber: cardNum.replace(/\s/g, ""),
credit_reference, credit_reference,
cvc: cvv, cvc: cvv,
@@ -157,7 +157,7 @@ export default function ProductUploadField({
fieldClass="px-6" fieldClass="px-6"
type="text" type="text"
name="name" name="name"
placeholder="Item Name" placeholder="RaidParty Fighters"
inputHandler={inh} inputHandler={inh}
value={datas.itemName} value={datas.itemName}
/> />
@@ -186,7 +186,7 @@ export default function ProductUploadField({
<textarea <textarea
value={datas.description} value={datas.description}
onChange={(e) => dscrphn(e)} onChange={(e) => dscrphn(e)}
placeholder="Enter detail description" placeholder="provide a detailed description of your item."
rows="7" rows="7"
className="w-full h-full px-7 py-4 border border-light-purple dark:border-[#5356fb29] rounded-[20px] text-dark-gray dark:text-white bg-[#FAFAFA] dark:bg-[#11131F] focus:ring-0 focus:outline-none" className="w-full h-full px-7 py-4 border border-light-purple dark:border-[#5356fb29] rounded-[20px] text-dark-gray dark:text-white bg-[#FAFAFA] dark:bg-[#11131F] focus:ring-0 focus:outline-none"
/> />