From eee9b093386900e4ec2f02b2461be2150b07b32a Mon Sep 17 00:00:00 2001 From: Firstyear Date: Tue, 5 Sep 2023 16:37:52 +1000 Subject: [PATCH] improve wording of webauthn cli interaction (#2073) Co-authored-by: James Hodgkinson --- tools/cli/src/cli/session.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/cli/src/cli/session.rs b/tools/cli/src/cli/session.rs index fc8acdd07..55797ba17 100644 --- a/tools/cli/src/cli/session.rs +++ b/tools/cli/src/cli/session.rs @@ -200,7 +200,10 @@ async fn do_passkey( pkr: RequestChallengeResponse, ) -> Result { let mut wa = get_authenticator(); - println!("Your authenticator will now flash for you to interact with it."); + println!("If your authenticator is not attached, attach it now."); + println!("Your authenticator will then flash/prompt for confirmation."); + #[cfg(target_os = "macos")] + println!("Note: TouchID is not currently supported on the CLI 🫤"); let auth = wa .do_authentication(client.get_origin().clone(), pkr) .map(Box::new)