From cc27a462630fb656dc8984cf0a788f8a159821c0 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 25 Feb 2025 02:59:41 +0530 Subject: [PATCH] feat: fetch proxy config 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 75e7d98b..36dfa0b6 100644 --- a/src/components/proxy/ProxyForm.tsx +++ b/src/components/proxy/ProxyForm.tsx @@ -103,6 +103,7 @@ const ProxyForm: React.FC = () => { setIsProxyConfigured(true); setProxy({ proxy_url: proxyConfigForm.server_url, auth: requiresAuth }); notify('success', t('proxy.notifications.config_success')); + fetchProxyConfig(); } else { notify('error', t('proxy.notifications.config_error')); console.log(`${t('proxy.notifications.config_error')} ${response}`)