From febad143647d475123b1b3474caebe700df01a02 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 25 Feb 2025 02:59:08 +0530 Subject: [PATCH] feat: set proxy --- 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 520f1bd9..75e7d98b 100644 --- a/src/components/proxy/ProxyForm.tsx +++ b/src/components/proxy/ProxyForm.tsx @@ -101,6 +101,7 @@ const ProxyForm: React.FC = () => { const response = await sendProxyConfig(proxyConfigForm); if (response) { setIsProxyConfigured(true); + setProxy({ proxy_url: proxyConfigForm.server_url, auth: requiresAuth }); notify('success', t('proxy.notifications.config_success')); } else { notify('error', t('proxy.notifications.config_error'));