From 4b4bfe67adaf89301fd52913e857c62301ed586b Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sat, 25 Jul 2026 22:42:57 -0400 Subject: [PATCH] desktop: rustfmt the client-header tuple Applied verbatim from run 2886's cargo fmt --check diff. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01SreJkbxB4gx8pPsu8QbLPi --- desktop/src-tauri/src/sync/compat.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop/src-tauri/src/sync/compat.rs b/desktop/src-tauri/src/sync/compat.rs index 9092afd..b9fdd03 100644 --- a/desktop/src-tauri/src/sync/compat.rs +++ b/desktop/src-tauri/src/sync/compat.rs @@ -159,7 +159,10 @@ pub fn client_headers() -> [(&'static str, String); 2] { let agent = format!("thoughtsync-desktop/{}", env!("CARGO_PKG_VERSION")); [ ("X-ThoughtSync-Client", agent), - ("X-ThoughtSync-Protocol", CLIENT_PROTOCOL_VERSION.to_string()), + ( + "X-ThoughtSync-Protocol", + CLIENT_PROTOCOL_VERSION.to_string(), + ), ] }