Compare commits

...

2 Commits

Author SHA1 Message Date
victorAnumudu 33abbbcd2b adjusted reward component contents 2023-10-31 13:53:02 +01:00
ameye 04844af733 Merge branch 'lastname-bug-fix' of WrenchBoard/Users-Wrench into master 2023-10-31 12:42:42 +00:00
2 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -49,12 +49,12 @@ function RewardsTable() {
return (
<div className='flex flex-col justify-between min-h-[500px]'>
{familyRewardHistory.loading ?
<LoadingSpinner size='16' color='sky-blue' height='h-full' />
<LoadingSpinner size='16' color='sky-blue' height='h-[500px]' />
:
<table className="wallet-activity w-full table-auto border-collapse text-left">
<thead className='border-b-2'>
<tr className='text-slate-600'>
<th className="p-2">Description</th>
<th className="p-2"></th>
<th className="p-2">Amount</th>
<th className="p-2">Date</th>
<th className="p-2">Confirmation</th>
-2
View File
@@ -282,8 +282,6 @@ export default function History() {
{/* REWARD SECTION */}
{tab == 'reward' &&
<div className="wallet w-full border-t">
<h1 className="p-2 text-xl font-bold text-dark-gray dark:text-white tracking-wide">Rewards</h1>
{/* <p className='text-base text-slate-500 dark:text-white'>Activity Report</p> */}
<RewardsTable />
</div>
}