renamed map object

This commit is contained in:
Polaris
2024-08-19 19:14:47 -04:00
parent b303fbcc9a
commit 552f737650
5 changed files with 14 additions and 11 deletions

View File

@ -91,7 +91,7 @@ export async function getTrophies() {
new Map(
AllTrophies.filter((matchingTrophyId) =>
unlockedTrophies.includes(matchingTrophyId.id),
).map((unlockedTrophy) => [unlockedTrophy.id, unlockedTrophy]),
).map((unlockedTrophyIds) => [unlockedTrophyIds.id, unlockedTrophyIds]),
).values(),
);