From df758729c180bb99265f1ac8dcdfd7aa2093a1d5 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Tue, 9 Sep 2025 10:37:14 -0500 Subject: [PATCH] Separating the revoke client functionality from the main vpn lists. --- src/app/components/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/components/index.js b/src/app/components/index.js index e12529e..9467176 100644 --- a/src/app/components/index.js +++ b/src/app/components/index.js @@ -1,2 +1,4 @@ -export * as ConfirmRevoke from './VPN/ConfirmRevoke'; -export * as CreateVPNClientDialog from './VPN/CreateVPNClientDialog'; \ No newline at end of file +import ConfirmRevoke from './VPN/ConfirmRevoke'; +import CreateVPNClientDialog from './VPN/CreateVPNClientDialog'; + +export { ConfirmRevoke, CreateVPNClientDialog }; \ No newline at end of file -- 2.43.0