From e19eda7919bae8b0493e539e1c764894ae8b8b0f Mon Sep 17 00:00:00 2001 From: ddidderr Date: Thu, 13 Nov 2025 23:26:07 +0100 Subject: [PATCH] installed + downloaded --- crates/lanspread-tauri-deno-ts/src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 = () => {