diff --git a/src/mytui/app.rs b/src/mytui/app.rs index f70c1a6..40632fa 100644 --- a/src/mytui/app.rs +++ b/src/mytui/app.rs @@ -55,9 +55,9 @@ impl ListState { pub struct PrintWindow<'a> { pub title: &'a str, pub should_quit: bool, - pub tasks: ListState<(&'a str)>, + pub tasks: ListState<&'a str>, pub to_print_by_idx: Vec, - pub to_print_by_title: Vec<(&'a str)>, + pub to_print_by_title: Vec<&'a str>, } impl<'a> PrintWindow<'a> {