chore: clippy + fmt

This commit is contained in:
Edward Langley
2026-04-01 22:17:11 -07:00
parent 1d5edd2c09
commit fe74cc5fcb
5 changed files with 13 additions and 11 deletions

View File

@ -223,7 +223,7 @@ fn expand_category(
}
// Skip the data item if its group is collapsed.
if item_group.map_or(false, |g| view.is_group_collapsed(cat_name, g)) {
if item_group.is_some_and(|g| view.is_group_collapsed(cat_name, g)) {
continue;
}