style: Addressed style comments left by copilot reviewer

This commit is contained in:
2026-05-07 13:01:26 -06:00
parent eee0e86131
commit f5967c7771
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -21,8 +21,8 @@ pub fn read_single_key(valid_chars: &[char], default: char, prompt: &str) -> Res
break Err(anyhow::anyhow!("Interrupted"));
}
KeyCode::Char(c) if valid_chars.contains(&c) => {
break Ok(c);
// Invalid character, continue loop
break Ok(c);
}
KeyCode::Enter => {
break Ok(default);