From 2ed95d21daa4e3bfb05635c636f616b17e8d3fcf Mon Sep 17 00:00:00 2001 From: michael Date: Mon, 27 Apr 2026 10:55:51 -0700 Subject: [PATCH] style(daemon): rustfmt collapse get_pending_status match arm Co-Authored-By: Claude Opus 4.7 (1M context) --- daemon/src/state.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daemon/src/state.rs b/daemon/src/state.rs index 3cb2e4c..2691d6f 100644 --- a/daemon/src/state.rs +++ b/daemon/src/state.rs @@ -261,7 +261,10 @@ impl AppState { pub async fn get_pending_status(&self, user: &str) -> Result { match self.pending.get(user)? { - Some(flag) => Ok(PendingStatus { present: true, flag }), + Some(flag) => Ok(PendingStatus { + present: true, + flag, + }), None => Ok(PendingStatus { present: false, flag: PendingFlag::default(),