From 6c545c1d9cb973d9d7583a608b334327d0d2495f Mon Sep 17 00:00:00 2001 From: przemo20 Date: Sat, 25 Jul 2026 22:50:25 +0200 Subject: [PATCH] Fix hidden apps --- .../Features/Store/Wishlist/Components/WishlistStats.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/Content/Features/Store/Wishlist/Components/WishlistStats.svelte b/src/js/Content/Features/Store/Wishlist/Components/WishlistStats.svelte index 8babab1f6..9167793c8 100644 --- a/src/js/Content/Features/Store/Wishlist/Components/WishlistStats.svelte +++ b/src/js/Content/Features/Store/Wishlist/Components/WishlistStats.svelte @@ -81,7 +81,7 @@ for (const item of page.storeItems) { const option = item.bestPurchaseOption; if (!option) { - if (item.unlisted) { + if (!item.visible) { unlistedApps.push(item); } else { noPriceCount++;