From d3a40b9152225c65f887c526213532718b52705c Mon Sep 17 00:00:00 2001 From: Youwes09 Date: Sat, 16 May 2026 03:54:05 -0500 Subject: [PATCH] Fix: System.rs PathBuf Error --- src-tauri/src/commands/system.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src-tauri/src/commands/system.rs b/src-tauri/src/commands/system.rs index e0d7659..c8d1ad6 100644 --- a/src-tauri/src/commands/system.rs +++ b/src-tauri/src/commands/system.rs @@ -1,5 +1,7 @@ #[cfg(target_os = "windows")] use crate::server::resolve::strip_unc; +#[cfg(target_os = "windows")] +use std::path::PathBuf; use tauri::Manager; #[tauri::command]