diff --git a/crates/uv/src/commands/auth/token.rs b/crates/uv/src/commands/auth/token.rs index ffd3547d1..b28652df4 100644 --- a/crates/uv/src/commands/auth/token.rs +++ b/crates/uv/src/commands/auth/token.rs @@ -130,6 +130,6 @@ async fn pyx_refresh(store: &PyxTokenStore, client: &BaseClient, printer: Printe } }; - writeln!(printer.stdout(), "{}", token.cyan())?; + writeln!(printer.stdout(), "{}", token.as_str().cyan())?; Ok(()) }