From: charleswrayjr Date: Mon, 8 Sep 2025 23:11:32 +0000 (-0500) Subject: Checking revokeClientName before sending the command to revoke the client. X-Git-Url: https://git.phasecustomsoft.com/static/gitweb.css?a=commitdiff_plain;h=13969a4cd89a124f3351798b4646c654cd52c333;p=phs-admin.git Checking revokeClientName before sending the command to revoke the client. --- diff --git a/src/app/views/VPN/VPN.jsx b/src/app/views/VPN/VPN.jsx index 63d229e..35ca8be 100644 --- a/src/app/views/VPN/VPN.jsx +++ b/src/app/views/VPN/VPN.jsx @@ -42,7 +42,8 @@ const VPN = () => { const handleRevokeClientSubmit = async (e) => { e.preventDefault(); - setMessage( await VPNService.revokeClient(revokeClientName) ); + console.log(revokeClientName); + // setMessage( await VPNService.revokeClient(revokeClientName, fetchClients ) ); }; return (