diff --git a/src/command/config/auth.rs b/src/command/config/auth.rs index f8c84dcf0..650c472e6 100644 --- a/src/command/config/auth.rs +++ b/src/command/config/auth.rs @@ -44,6 +44,7 @@ fn api_key_prompt() -> Result { .paint("https://studio.apollographql.com/user-settings") ); tracing::info!("Copy the key and paste it into the prompt below."); + term.write_str("> ")?; let api_key = term.read_secure_line()?; if is_valid(&api_key) { Ok(api_key)