diff --git a/src-tauri/src/commands/import_export.rs b/src-tauri/src/commands/import_export.rs index be2fc3d33..048935b90 100644 --- a/src-tauri/src/commands/import_export.rs +++ b/src-tauri/src/commands/import_export.rs @@ -115,7 +115,7 @@ pub async fn open_zip_file_dialog( let dialog = app.dialog(); let result = dialog .file() - .add_filter("ZIP", &["zip"]) + .add_filter("ZIP / Skill", &["zip", "skill"]) .blocking_pick_file(); Ok(result.map(|p| p.to_string()))