style: cargo fmt — fix pre-existing Rust formatting

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Test
2026-03-31 13:54:18 +02:00
parent 1199840fdc
commit 491e5d3962
5 changed files with 31 additions and 8 deletions

View File

@@ -132,7 +132,9 @@ pub async fn git_remote_status(vault_path: String) -> Result<GitRemoteStatus, St
#[tauri::command]
pub fn is_git_repo(vault_path: String) -> bool {
let vault_path = expand_tilde(&vault_path);
std::path::Path::new(vault_path.as_ref()).join(".git").is_dir()
std::path::Path::new(vault_path.as_ref())
.join(".git")
.is_dir()
}
#[cfg(desktop)]