diff --git a/frontend/src/core/api/api-client.ts b/frontend/src/core/api/api-client.ts index 14a2ae911..5a4370591 100644 --- a/frontend/src/core/api/api-client.ts +++ b/frontend/src/core/api/api-client.ts @@ -173,7 +173,6 @@ function createCompatibleClient(isMock?: boolean): LangGraphClient { } const apiUrl = getLangGraphBaseURL(isMock); - console.log(`Creating API client with base URL: ${apiUrl}`); const client = new LangGraphClient({ apiUrl, onRequest: injectCsrfHeader, diff --git a/frontend/src/core/config/index.ts b/frontend/src/core/config/index.ts index 4aaa7122d..cb06e00ff 100644 --- a/frontend/src/core/config/index.ts +++ b/frontend/src/core/config/index.ts @@ -19,10 +19,6 @@ export function getBackendBaseURL() { } export function getLangGraphBaseURL(isMock?: boolean) { - console.log( - "env.NEXT_PUBLIC_LANGGRAPH_BASE_URL", - env.NEXT_PUBLIC_LANGGRAPH_BASE_URL, - ); if (env.NEXT_PUBLIC_LANGGRAPH_BASE_URL) { return new URL( env.NEXT_PUBLIC_LANGGRAPH_BASE_URL,