fix linting error with cargo fmt

This commit is contained in:
Blodhgarm
2026-08-28 00:04:54 -05:00
parent 1ff7562366
commit e73fc08a4d
4 changed files with 93 additions and 90 deletions
@@ -223,10 +223,10 @@ impl DBOrganization {
",
organization_id as DBOrganizationId,
)
.fetch(exec)
.map_ok(|m| DBProjectId(m.id))
.try_collect::<Vec<_>>()
.await?;
.fetch(exec)
.map_ok(|m| DBProjectId(m.id))
.try_collect::<Vec<_>>()
.await?;
Ok(db_projects)
}