diff --git a/packages/client/src/index.ts b/packages/client/src/index.ts index 841c93fab..a9e12c53a 100644 --- a/packages/client/src/index.ts +++ b/packages/client/src/index.ts @@ -104,7 +104,7 @@ export function getCurrentBaseUrl() { const parts = endpointPath.split('/'); const index = parts.findIndex(p => p === 'endpoint'); if (index === -1) { - console.warn('path not recognized, does not contain the segment "endpoint".') + // console.warn('path not recognized, does not contain the segment "endpoint".') return undefined; } const keep = parts.slice(0, index);