dead code + couleur

This commit is contained in:
thatscringebro
2026-03-11 21:40:59 -04:00
parent 461468ff1b
commit 7065a085a9
4 changed files with 10 additions and 14 deletions

View File

@@ -71,7 +71,6 @@ where
CurrentWidget::TrxList => {
app.next_tr();
}
_ => {}
},
KeyCode::Char('k') => match app.current_widget {
CurrentWidget::AccountList => {
@@ -80,7 +79,6 @@ where
CurrentWidget::TrxList => {
app.previous_tr();
}
_ => {}
},
KeyCode::Char('n') => match app.current_widget {
CurrentWidget::AccountList => {
@@ -92,7 +90,6 @@ where
.set_account_id(app.acc_list.get_selected_id());
app.new_transaction.set_date(Local::now());
}
_ => {}
},
_ => {}
},
@@ -138,7 +135,6 @@ where
app.current_screen = CurrentScreen::Main;
}
},
_ => {}
}
}
}