From e3ab44ae95048093675af1b98bc873e8ba533a7a Mon Sep 17 00:00:00 2001 From: neuronull <9162534+neuronull@users.noreply.github.com> Date: Fri, 17 Oct 2025 14:27:34 -0600 Subject: [PATCH] fix windows lint --- apps/desktop/desktop_native/core/src/autofill/windows.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/desktop_native/core/src/autofill/windows.rs b/apps/desktop/desktop_native/core/src/autofill/windows.rs index ec0dc5d5e91..edb2417c85d 100644 --- a/apps/desktop/desktop_native/core/src/autofill/windows.rs +++ b/apps/desktop/desktop_native/core/src/autofill/windows.rs @@ -3,7 +3,7 @@ use anyhow::Result; /// # Errors /// /// TODO -#[allow(clippy::unused_async, missing_errors_doc)] +#[allow(clippy::unused_async)] pub async fn run_command(_value: String) -> Result { todo!("Windows does not support autofill"); }