From 0ab2c39d9b10b2e48fe2b769179772718d0d6347 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 6 May 2026 05:41:07 +0200 Subject: [PATCH] Refactor: Simplify product name retrieval and improve logging readability in main.rs --- src-tauri/src/main.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 3e7bfe7..f1c0c42 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -268,11 +268,7 @@ fn electron_settings_candidates(app: &AppHandle, tauri_path: &Path) -> Vec {} Err(error) => { - eprintln!("Skipping Electron settings import from {}: {error}", candidate.display()); + eprintln!( + "Skipping Electron settings import from {}: {error}", + candidate.display() + ); } } }