From 88bf2a9648750365d4565e32deae35b18808a391 Mon Sep 17 00:00:00 2001 From: Lorenz Leutgeb Date: Fri, 12 Jun 2026 14:21:16 +0200 Subject: [PATCH] term: Remove typing indication for passwords `inquire::PasswordDisplayMode::Masked` causes inquire to render characters of the password text input marked as different characters (asterisks). Users reported that they would prefer password text input to not be rendered at all, i.e., have no indication of input. This is inquire's default, so remove the lines that set the display mode. --- crates/radicle-term/src/io.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/radicle-term/src/io.rs b/crates/radicle-term/src/io.rs index 10d44d38..f3f61de3 100644 --- a/crates/radicle-term/src/io.rs +++ b/crates/radicle-term/src/io.rs @@ -393,7 +393,6 @@ pub fn passphrase( ) -> io::Result> { match Password::new("Passphrase:") .with_render_config(*CONFIG) - .with_display_mode(inquire::PasswordDisplayMode::Masked) .without_confirmation() .with_validator(validate) .prompt() @@ -410,7 +409,6 @@ pub fn passphrase_confirm>(prompt: &str, var: K) -> io::Result