diff --git a/cli/src/main.rs b/cli/src/main.rs index 21e461cc..cb313fdc 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -577,7 +577,7 @@ impl Init { let file_types = |name: &str| { Input::::with_theme(&ColorfulTheme::default()) .with_prompt("File types (space-separated)") - .default(format!(".{name}")) + .default(name.to_string()) .interact_text() .map(|ft| { let mut set = HashSet::new();