diff --git a/src/components/organisms/ProxyForm.tsx b/src/components/organisms/ProxyForm.tsx index d58afedb..dd478d77 100644 --- a/src/components/organisms/ProxyForm.tsx +++ b/src/components/organisms/ProxyForm.tsx @@ -115,7 +115,18 @@ const ProxyForm: React.FC = () => { return ( <> - + { + isProxyConfigured ? ( + + + Proxy is already configured. You can test the configuration below. + + + + ) : ( + Proxy Configuration @@ -198,6 +209,8 @@ const ProxyForm: React.FC = () => { )} + ) + } ); };