From 88be99f8a071c8f5786800a958218948286cbba0 Mon Sep 17 00:00:00 2001 From: Tam Nhu Tran Date: Sun, 22 Feb 2026 22:44:26 +0700 Subject: [PATCH] fix(cliproxy): keep remote-proxy client under maintainability limit --- src/cliproxy/remote-proxy-client.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/cliproxy/remote-proxy-client.ts b/src/cliproxy/remote-proxy-client.ts index 3e502c99..838a7bff 100644 --- a/src/cliproxy/remote-proxy-client.ts +++ b/src/cliproxy/remote-proxy-client.ts @@ -341,14 +341,7 @@ export async function checkRemoteProxy( } } -/** - * Test connection to remote CLIProxyAPI (alias for dashboard use) - * - * This is an alias for checkRemoteProxy() for semantic clarity in UI contexts. - * - * @param config Remote proxy client configuration - * @returns RemoteProxyStatus with reachability and latency - */ +/** Alias for dashboard connection tests. */ export async function testConnection(config: RemoteProxyClientConfig): Promise { return checkRemoteProxy(config); }