Remove vestigial code

This commit is contained in:
Ian Keane 2025-11-23 12:11:46 -05:00
parent 8534fa4988
commit eb7790ff8f
4 changed files with 10 additions and 27 deletions

View file

@ -281,9 +281,6 @@ fn render_config_help(frame: &mut Frame, _app: &App) {
"show_help_hint: true/false",
" Controls visibility of the help hint in the bottom bar",
"",
"show_command_hints: true/false",
" Controls visibility of command hints in the bottom bar",
"",
"projects: [list of strings]",
" List of available project names",
"",
@ -292,7 +289,6 @@ fn render_config_help(frame: &mut Frame, _app: &App) {
"",
"Example configuration:",
"show_help_hint: true",
"show_command_hints: true",
"projects:",
" - project1",
" - project2",
@ -477,7 +473,7 @@ fn render_log_view(frame: &mut Frame, app: &App) {
// Determine what counts as an entry based on grouping mode
let is_by_project = matches!(app.log_view_grouping, LogViewGrouping::ByProject);
for (idx, line) in app.log_view_content.iter().enumerate() {
for (_idx, line) in app.log_view_content.iter().enumerate() {
if !line.starts_with('\t') && !line.is_empty() && !line.starts_with(" ") {
current_date = line.clone();
} else if line.starts_with(" ") && !line.starts_with("\t") {