Fix: Rust-Cleanup & Flake-SHA Patch

This commit is contained in:
Youwes09
2026-05-01 11:32:29 -05:00
parent b79ee99e8a
commit 399d429142
5 changed files with 4 additions and 10 deletions
+2 -2
View File
@@ -77,9 +77,9 @@ mod windows_hello {
}
#[tauri::command]
pub fn windows_hello_authenticate(reason: String) -> Result<(), String> {
pub fn windows_hello_authenticate(_reason: String) -> Result<(), String> {
#[cfg(target_os = "windows")]
return windows_hello::authenticate(&reason);
return windows_hello::authenticate(&_reason);
#[cfg(not(target_os = "windows"))]
Err("notSupported".into())
}
-1
View File
@@ -1,7 +1,6 @@
#[cfg(target_os = "windows")]
use crate::server::resolve::strip_unc;
use tauri::Manager;
use std::path::PathBuf;
#[tauri::command]
pub fn get_platform_ui_scale(window: tauri::Window) -> f64 {