diff --git a/client/src/main.rs b/client/src/main.rs
index 3bc458c..7d51aaa 100644
--- a/client/src/main.rs
+++ b/client/src/main.rs
@@ -282,6 +282,7 @@ fn install(
if opts.delete_invite
|| Confirm::with_theme(&*prompts::THEME)
+ .wait_for_newline(true)
.with_prompt(&format!(
"Delete invitation file \"{}\" now? (It's no longer needed)",
invite.to_string_lossy().yellow()
diff --git a/shared/src/prompts.rs b/shared/src/prompts.rs
index 6832a1e..eb07938 100644
--- a/shared/src/prompts.rs
+++ b/shared/src/prompts.rs
@@ -47,6 +47,7 @@ pub fn add_cidr(cidrs: &[Cidr], request: &AddCidrOpts) -> Result