Drop section used for debugging

This commit is contained in:
2Shirt 2025-06-04 20:43:51 -07:00
parent 9f0ecb9baf
commit b63927d3ef
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -903,30 +903,6 @@ fn build_right_items(app: &App) -> Action {
let mut items: Vec<Vec<DVLine>> = Vec::new();
let mut labels: Vec<Vec<DVLine>> = Vec::new();
let mut start_index = 0;
// TODO: DELETE THIS SECTION
items.push(vec![
DVLine {
line_parts: vec![format!(
"Parts: {:?} // {:?}",
app.clone.part_index_boot, app.clone.part_index_os
)],
line_colors: vec![Color::Reset],
},
DVLine {
line_parts: vec![format!(
"Selected: {:?} // {:?}",
app.list.selected(),
app.list.get_selected(),
)],
line_colors: vec![Color::Reset],
},
DVLine {
line_parts: vec![String::from("-----")],
line_colors: vec![Color::Reset],
},
]);
start_index += 1;
// TODO: DELETE THIS SECTION
match app.cur_mode {
Mode::DiagMenu => {
let mut header_lines: Vec<DVLine> = Vec::new();