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(), + ), ] }