diff --git a/clients/desktop/src-tauri/src/lib.rs b/clients/desktop/src-tauri/src/lib.rs
index 79979e9..f751541 100644
--- a/clients/desktop/src-tauri/src/lib.rs
+++ b/clients/desktop/src-tauri/src/lib.rs
@@ -1,6 +1,6 @@
mod sync;
-use std::path::{Path, PathBuf};
+use std::path::PathBuf;
use std::sync::{Arc, Mutex};
use std::time::Duration;
use tauri::{
@@ -14,27 +14,12 @@ use sync::config::AppConfig;
use sync::engine::{SyncEngine, SyncMode, SyncPath};
use sync::watcher::{FileWatcher, ChangeKind};
-use std::collections::HashMap;
-
-/// Tracks a file opened from a .cloud placeholder
-#[derive(Clone, Debug)]
-struct OpenedFile {
- _file_id: i64,
- real_path: PathBuf,
- cloud_name: String,
- opened_at: std::time::Instant,
- last_size: u64,
- last_changed: std::time::Instant,
-}
-
struct AppState {
api: Mutex