From d3b41bb91659fb519dd882ec833b57a5e7573bac Mon Sep 17 00:00:00 2001 From: Avery Harnish Date: Wed, 17 Feb 2021 15:07:05 -0600 Subject: [PATCH] feat: adds prompt to config auth input --- src/command/config/auth.rs | 1 + 1 file changed, 1 insertion(+) 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)