···2525 /// The active authenticated session after a successful token exchange.
2626 /// Set by `start_oauth_flow` on success; read by `OAuthClient` for every request.
2727 pub oauth_session: Mutex<Option<OAuthSession>>,
2828- /// Runtime relay client. Populated from Keychain on startup (Phase 3) or by
2828+ /// Runtime relay client. Populated from Keychain on startup or by
2929 /// `save_relay_url` on first launch. Falls back to the compile-time default if unset.
3030 relay_client: OnceLock<crate::http::RelayClient>,
3131}