diff --git a/src-tauri/src/sync.rs b/src-tauri/src/sync.rs index f19e38f..13afeea 100644 --- a/src-tauri/src/sync.rs +++ b/src-tauri/src/sync.rs @@ -127,14 +127,11 @@ pub fn delete_space(server_url: &str, token: &str, space_id: &str) -> Result<(), #[derive(Deserialize)] pub struct ManifestEntry { pub path: String, - pub kind: String, pub hash: String, } #[derive(Deserialize)] pub struct SpaceManifest { - pub space_id: String, - pub name: String, pub entrypoint: String, pub files: Vec, } @@ -158,7 +155,6 @@ pub fn get_manifest( #[derive(Deserialize)] pub struct FileContent { - pub path: String, pub kind: String, pub hash: String, pub encoding: String, diff --git a/src/lib/components/LoginModal.svelte b/src/lib/components/LoginModal.svelte index a155ea0..fdfec55 100644 --- a/src/lib/components/LoginModal.svelte +++ b/src/lib/components/LoginModal.svelte @@ -1,4 +1,5 @@