diff --git a/crates/lanspread-tauri-deno-ts/src/App.tsx b/crates/lanspread-tauri-deno-ts/src/App.tsx index 424d8c4..77ad5f9 100644 --- a/crates/lanspread-tauri-deno-ts/src/App.tsx +++ b/crates/lanspread-tauri-deno-ts/src/App.tsx @@ -52,7 +52,7 @@ const App = () => { // Show union of installed games and games with peers return games.filter(game => game.installed || game.downloaded || game.peer_count > 0); case 'installed': - return games.filter(game => game.installed); + return games.filter(game => game.installed || game.downloaded); case 'all': default: return games; @@ -449,7 +449,7 @@ const App = () => {