fix: mobile clippy warnings

This commit is contained in:
Lucas Nogueira
2026-09-26 15:57:33 -03:00
parent 3d8a3c877b
commit a433ec09d1
12 changed files with 157 additions and 163 deletions
+2 -2
View File
@@ -10,7 +10,7 @@
)]
use tauri::{
Manager, RunEvent, Runtime,
Manager, Runtime,
plugin::{Builder, TauriPlugin},
};
@@ -62,7 +62,7 @@ pub fn init<R: Runtime>() -> TauriPlugin<R> {
})
.on_event(|_app, _event| {
#[cfg(desktop)]
if let RunEvent::Exit = _event {
if let tauri::RunEvent::Exit = _event {
_app.clipboard().cleanup();
}
})