From 5ffccfbaf77aa57ede0952ea7b92d2e26b941af6 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 26 Oct 2024 05:41:10 +0530 Subject: [PATCH] feat: show proxy config --- src/components/organisms/ProxyForm.tsx | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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 = () => { )} + ) + } ); };