added completed job histroy API

This commit was merged in pull request #751.
This commit is contained in:
victorAnumudu
2024-07-12 19:33:59 +01:00
parent ca53101b55
commit 43f59e8e84
5 changed files with 50 additions and 36 deletions
+2 -2
View File
@@ -55,7 +55,7 @@ export const RewardsTable = memo(() => {
<thead className='w-full'>
<tr className='text-slate-600 dark:text-white'>
<th className="p-4"></th>
<th className="p-4">Amount</th>
<th className="p-4 text-right">Amount</th>
<th className="p-4">Date</th>
<th className="p-4">Confirmation</th>
</tr>
@@ -74,7 +74,7 @@ export const RewardsTable = memo(() => {
</div>
</div>
</td>
<td className="p-4">{AmountTo2DP(item.amount*0.01)} {item.currency}</td>
<td className="p-4 text-right">{AmountTo2DP(item.amount*0.01)} {item.currency}</td>
<td className="p-4">{date}</td>
<td className="p-4">{item.confirmation}</td>
</tr>