diff --git a/src/components/organisms/ProxyForm.tsx b/src/components/organisms/ProxyForm.tsx index b2a19a0e..68abbe2a 100644 --- a/src/components/organisms/ProxyForm.tsx +++ b/src/components/organisms/ProxyForm.tsx @@ -134,121 +134,121 @@ const ProxyForm: React.FC = () => { return ( <> - - - Proxy Configuration - - - - - - {tabIndex === 0 && ( - isProxyConfigured ? ( - - - - Current Proxy Configuration - - - - - - Proxy URL - Requires Authentication - - - - - {proxy.proxy_url} - {proxy.auth ? 'Yes' : 'No'} - - -
-
-
- - -
- ) : ( - - - + + Proxy Configuration + + + + + + {tabIndex === 0 && ( + isProxyConfigured ? ( + + + + Current Proxy Configuration + + + + + + Proxy URL + Requires Authentication + + + + + {proxy.proxy_url} + {proxy.auth ? 'Yes' : 'No'} + + +
+
+
+ + +
+ ) : ( + + + - - - } - label="Requires Authentication?" - /> - - {requiresAuth && ( - <> - - - - - - - - )} - - - ))} - {tabIndex === 1 && ( - + /> +
+ + } + label="Requires Authentication?" + /> + + {requiresAuth && ( <> - - Coming Soon. Join our Cloud Waitlist to get early access. - - + + + + + + -
- )} -
- ) + )} + + + ))} + {tabIndex === 1 && ( + + <> + + Coming Soon. Join our Cloud Waitlist to get early access. + + + + + )} + + ) ); };