5c2a0cf115
## Summary The standalone Apollo client used by `AuthService.renewToken` attached `loggerLink` unconditionally, while the main `apollo.factory` client correctly gates it on `isDebugMode`. As a result, **every token refresh in production printed the `renewToken` response — including the new access and refresh JWTs — to the browser console** via the `loggerLink` `RESULT` group. Reproduced in production: opening devtools shows a `Twenty-Refresh::Generic` collapsed group on every token renewal, containing `HEADERS`, `VARIABLES`, `QUERY` and a `RESULT` payload with the full token strings. The fix mirrors the gating already used in `apollo.factory.ts` (`...(isDebugMode ? [logger] : [])`), so the logger is only attached when `IS_DEBUG_MODE=true`. Local debug behavior is unchanged.