From 2de6a341d517da56982d2b9ca99d19d320524225 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Tue, 9 Sep 2025 09:16:08 -0500 Subject: [PATCH] Adding available clients section to VPN page. --- src/app/views/VPN/VPN.jsx | 1 - 1 file changed, 1 deletion(-) 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} -- 2.43.0