Skip to content

Commit

Permalink
fix: achievement filter
Browse files Browse the repository at this point in the history
  • Loading branch information
zamitto committed Nov 5, 2024
1 parent 0451bc5 commit 9418c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/services/achievements/merge-achievements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const mergeAchievements = async (
);
});
})
.filter((achievement) => achievement)
.filter((achievement) => Boolean(achievement))
.map((achievement) => {
return {
displayName: achievement!.displayName,
Expand Down

0 comments on commit 9418c4a

Please sign in to comment.