Skip to content

Commit

Permalink
fix: tabmaster now loads on latest steam client beta
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebofill committed Jun 27, 2024
1 parent 06a005e commit 01fa79f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/CustomTabContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<AppId, SteamAppOverview>();
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;
}
Expand Down

0 comments on commit 01fa79f

Please sign in to comment.