style: reformat code and cleanup whitespace

Reformat code for improved readability and remove unnecessary whitespace.

Co-Authored-By: fiddlerwoaroof/git-smart-commit (gemma-4-26B-A4B-it-UD-Q5_K_XL.gguf)
This commit is contained in:
Edward Langley
2026-04-15 23:42:44 -07:00
parent a900f147b5
commit 4e37e12f9a
6 changed files with 21 additions and 24 deletions
+5 -2
View File
@@ -246,8 +246,11 @@ fn draw_content(f: &mut Frame, area: Rect, app: &App) {
}
if app.category_panel_open {
let a = Rect::new(side.x, y, side.width, ph);
let content =
CategoryContent::new(&app.workbook.model, app.workbook.active_view(), &app.expanded_cats);
let content = CategoryContent::new(
&app.workbook.model,
app.workbook.active_view(),
&app.expanded_cats,
);
f.render_widget(Panel::new(content, &app.mode, app.cat_panel_cursor), a);
y += ph;
}