From a31f7060e5c5a82e7332e2ec7520038e47de3514 Mon Sep 17 00:00:00 2001 From: cloudhead Date: Tue, 15 Aug 2023 11:54:32 +0200 Subject: [PATCH] cli: Remove extra blank line in `rad auth` --- radicle-cli/src/commands/auth.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicle-cli/src/commands/auth.rs b/radicle-cli/src/commands/auth.rs index 13bab7f3..ca04a93e 100644 --- a/radicle-cli/src/commands/auth.rs +++ b/radicle-cli/src/commands/auth.rs @@ -162,10 +162,10 @@ pub fn authenticate(options: Options, profile: &Profile) -> anyhow::Result<()> { return Ok(()); } - term::headline(format!( + term::info!( "Authenticating as 👾 {}", term::format::Identity::new(profile).styled() - )); + ); let passphrase = if options.stdin { term::passphrase_stdin()