diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 134e1b93..ac5aa8d7 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -296,7 +296,9 @@ async fn save_changes(app_handle: AppHandle, steam_active_user_id: String, curre let steam_logo_str: &str = steam_logo_str_val.as_str().expect("Should have been able to convert steamLogo pos into str."); let logo_config_path: PathBuf = grids_directory.join(format!("{}.json", appid)); - if steam_logo_str == "Remove" { + println!("logo config str: {}", steam_logo_str); + println!("Is remove {}", steam_logo_str == "REMOVE"); + if steam_logo_str == "REMOVE" { let remove_res = fs::remove_file(logo_config_path); if remove_res.is_err() { let err = remove_res.err().unwrap();