]> PHS Git Server - phs-admin.git/commitdiff
Checking revokeClientName before sending the command to revoke the client.
authorcharleswrayjr <charleswrayjr@gmail.com>
Mon, 8 Sep 2025 23:11:32 +0000 (18:11 -0500)
committercharleswrayjr <charleswrayjr@gmail.com>
Mon, 8 Sep 2025 23:11:32 +0000 (18:11 -0500)
src/app/views/VPN/VPN.jsx

index 63d229ecb9f7564495f756d064daf4888427142c..35ca8bead66c9614400a8b4bb05e8f756d5ecbf1 100644 (file)
@@ -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 (