From db1f0edc432b8acea5ec54c667bc222d29bbf428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=B4=E5=A4=A9?= Date: Fri, 3 Apr 2026 00:33:28 +0800 Subject: [PATCH] fix(ci): format config command --- src-tauri/src/commands/config.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src-tauri/src/commands/config.rs b/src-tauri/src/commands/config.rs index ff78ce3..2658787 100644 --- a/src-tauri/src/commands/config.rs +++ b/src-tauri/src/commands/config.rs @@ -101,7 +101,10 @@ fn panel_version() -> &'static str { env!("CARGO_PKG_VERSION") } -fn find_panel_policy_entry<'a>(policy: &'a VersionPolicy, current_version: &str) -> Option<&'a VersionPolicyEntry> { +fn find_panel_policy_entry<'a>( + policy: &'a VersionPolicy, + current_version: &str, +) -> Option<&'a VersionPolicyEntry> { if let Some(entry) = policy.panels.get(current_version) { return Some(entry); }