style: Addressed updated linter complaints

This commit is contained in:
2025-08-07 19:49:11 -06:00
parent 154e491922
commit 02870043ec
11 changed files with 45 additions and 56 deletions
+1 -1
View File
@@ -353,7 +353,7 @@ fn draw_movie_crew(f: &mut Frame<'_>, app: &mut App<'_>, area: Rect) {
.block(layout_block_top_border())
.loading(app.is_loading)
.headers(["Crew Member", "Job", "Department"])
.constraints(iter::repeat(Constraint::Ratio(1, 3)).take(3))
.constraints(iter::repeat_n(Constraint::Ratio(1, 3), 3))
.footer(help_footer);
f.render_widget(crew_table, area);