style: cargo fmt — clear formatting drift blocking the release gate

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
archipelago
2026-07-29 05:53:33 -04:00
co-authored by Claude Fable 5
parent 8e51164321
commit 5c19effdd1
11 changed files with 92 additions and 124 deletions
@@ -80,12 +80,7 @@ fn manifest_declares_ui(app_id: &str) -> Option<bool> {
if m.app.interfaces.is_empty() {
return None;
}
return Some(
m.app
.interfaces
.values()
.any(|i| i.interface_type == "ui"),
);
return Some(m.app.interfaces.values().any(|i| i.interface_type == "ui"));
}
// Malformed manifests are already reported by the orchestrator's
// loader; here they simply don't count as a declaration.