From: charleswrayjr Date: Tue, 9 Sep 2025 14:16:08 +0000 (-0500) Subject: Adding available clients section to VPN page. X-Git-Url: https://git.phasecustomsoft.com/?a=commitdiff_plain;h=2de6a341d517da56982d2b9ca99d19d320524225;p=phs-admin.git Adding available clients section to VPN page. --- diff --git a/src/app/views/VPN/VPN.jsx b/src/app/views/VPN/VPN.jsx index 2d9360b..496a21f 100644 --- a/src/app/views/VPN/VPN.jsx +++ b/src/app/views/VPN/VPN.jsx @@ -104,7 +104,6 @@ const VPN = () => { return row.hasCertificate ? 'Yes' : 'No'; }, header: 'Active Certificate' }, { accessorFn: row => clients.find( c => c.name === row.clientName ) ? 'Yes' : 'No', header: 'Connected' }, - { accessorFn: row => row.hasCertificate ? 'Yes' : 'No', header: 'Revoked' }, { accessorFn: row => row.hasOvpn ? 'Yes' : 'No', header: 'Has Profile' }, ]} data={availableClients}