hide account coloumn

pull/36/head
ahmed.mujtaba 2026-08-31 13:03:29 +05:00
parent 56f529afa1
commit eff4c166b3
1 changed files with 0 additions and 6 deletions

View File

@ -230,7 +230,6 @@ export default function Candidates() {
() => [ () => [
{ key: 'name', label: 'Candidate', sortable: true }, { key: 'name', label: 'Candidate', sortable: true },
{ key: 'email', label: 'Email', sortable: true }, { key: 'email', label: 'Email', sortable: true },
{ key: 'isActive', label: 'Account', sortable: true },
{ key: 'applied', label: 'Added', sortable: true }, { key: 'applied', label: 'Added', sortable: true },
], ],
[], [],
@ -415,11 +414,6 @@ export default function Candidates() {
<td> <td>
<span className="text-sm cell-clip" title={c.email || undefined}>{c.email ?? '—'}</span> <span className="text-sm cell-clip" title={c.email || undefined}>{c.email ?? '—'}</span>
</td> </td>
<td>
{c.isActive
? <Badge className="b-green">Active</Badge>
: <Badge className="b-amber">Unconfirmed</Badge>}
</td>
<td> <td>
<span className="text-sm"> <span className="text-sm">
{c.applied ? c.applied.toLocaleDateString() : '—'} {c.applied ? c.applied.toLocaleDateString() : '—'}