From d24a01c5e14bc6e5215818a4f9df7b4caf7ae627 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 25 Feb 2025 02:58:37 +0530 Subject: [PATCH] feat: set proxy config true on form submit --- src/components/proxy/ProxyForm.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/proxy/ProxyForm.tsx b/src/components/proxy/ProxyForm.tsx index 08a4ce8b..520f1bd9 100644 --- a/src/components/proxy/ProxyForm.tsx +++ b/src/components/proxy/ProxyForm.tsx @@ -100,6 +100,7 @@ const ProxyForm: React.FC = () => { try { const response = await sendProxyConfig(proxyConfigForm); if (response) { + setIsProxyConfigured(true); notify('success', t('proxy.notifications.config_success')); } else { notify('error', t('proxy.notifications.config_error'));