From eff4c166b37ab6555d18fb917cff87f2cc6bb0a9 Mon Sep 17 00:00:00 2001 From: "ahmed.mujtaba" Date: Mon, 31 Aug 2026 13:03:29 +0500 Subject: [PATCH] hide account coloumn --- frontend/src/screens/Candidates.jsx | 6 ------ 1 file changed, 6 deletions(-) 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() : '—'} -- 2.40.1