From 01fa79f50ce339f43d1ee210479c3973ee3a95df Mon Sep 17 00:00:00 2001 From: Jesse Bofill Date: Thu, 27 Jun 2024 13:54:31 -0600 Subject: [PATCH] fix: tabmaster now loads on latest steam client beta --- src/components/CustomTabContainer.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/CustomTabContainer.tsx b/src/components/CustomTabContainer.tsx index ce46770..f7a0ae5 100644 --- a/src/components/CustomTabContainer.tsx +++ b/src/components/CustomTabContainer.tsx @@ -101,9 +101,8 @@ export class CustomTabContainer implements TabContainer { this.collection.allApps = appsList; this.collection.visibleApps = [...appsList]; - const allAppsMap = collectionStore.allAppsCollection.apps; const appMap = new Map(); - appsList.forEach((appItem: SteamAppOverview) => appMap.set(appItem.appid, allAppsMap.get(appItem.appid)!)); + appsList.forEach((appItem: SteamAppOverview) => appMap.set(appItem.appid, appItem)); this.collection.apps = appMap; }