Skip to content

Commit

Permalink
better filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkIntaqt committed May 16, 2024
1 parent 8da9ca9 commit f0bb976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/Challenges.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ class Challenges extends Component {
// Skip to next element if filter is on and not on element
if (this.filter.category.length > 0 && !this.filter.category.includes(parentId.toString())) {
if (this.filter.category.includes("seasonal-retired")) {
if (parentId !== 2022000 && parentId !== 2023000) {
if (parentId !== 2022000 && parentId !== 2023000 && parentId !== 2024100) {
continue;
}
} else {
Expand Down

0 comments on commit f0bb976

Please sign in to comment.