style: fix cargo fmt formatting

https://claude.ai/code/session_01Ci7CAdGaHhssYdio7wxVvd
This commit is contained in:
Claude
2026-03-28 16:01:35 +00:00
parent 4fb0d53206
commit 3930184e71
5 changed files with 22 additions and 13 deletions
+1 -3
View File
@@ -252,9 +252,7 @@ pub fn is_approval_authorized(source: Option<&str>, requesting: &str) -> bool {
match source {
None => false,
Some(src) if src == BOOTSTRAP_SOURCE_CHANNEL => true,
Some(src) => {
src == requesting || requesting == "web" || requesting == "gateway"
}
Some(src) => src == requesting || requesting == "web" || requesting == "gateway",
}
}