fix: improve ui

This commit is contained in:
Krrish Dholakia 2026-03-03 18:45:37 -08:00
parent 0f2a416b6f
commit c20944c39c
34 changed files with 0 additions and 3 deletions

View file

@ -13,9 +13,6 @@ interface ProxySwitcherProps {
const ProxySwitcher: React.FC<ProxySwitcherProps> = ({ onManageClick }) => {
const { connections, activeConnection, switchConnection } = useProxyConnection();
// Only show when there are multiple connections configured
if (connections.length <= 1) return null;
const items: MenuProps["items"] = [
...connections.map((conn) => ({
key: conn.id,