diff --git a/frontend/src/screens/Candidates.jsx b/frontend/src/screens/Candidates.jsx index eb70043..3e43eda 100644 --- a/frontend/src/screens/Candidates.jsx +++ b/frontend/src/screens/Candidates.jsx @@ -230,7 +230,6 @@ export default function Candidates() { () => [ { key: 'name', label: 'Candidate', sortable: true }, { key: 'email', label: 'Email', sortable: true }, - { key: 'isActive', label: 'Account', sortable: true }, { key: 'applied', label: 'Added', sortable: true }, ], [], @@ -415,11 +414,6 @@ export default function Candidates() { {c.email ?? '—'} - - {c.isActive - ? Active - : Unconfirmed} - {c.applied ? c.applied.toLocaleDateString() : '—'}