Chore: Patch Biometrics

This commit is contained in:
Youwes09
2026-05-01 05:56:39 -05:00
parent a71cc719ba
commit 3702a25813
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ 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);
#[cfg(not(target_os = "windows"))]
+1
View File
@@ -1,6 +1,7 @@
#[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 {