diff --git a/src/input.rs b/src/input.rs index 7b2bf8e..866f4e0 100644 --- a/src/input.rs +++ b/src/input.rs @@ -12,7 +12,7 @@ pub fn get_host(config: &mut ConfigManager) -> Result { } let hosts = config.configs.to_owned(); - let mut hosts: Vec = hosts.into_iter().collect(); + let hosts: Vec = hosts.into_iter().collect(); let theme = ColorfulTheme::default(); let mut select = Select::with_theme(&theme);