From f0bb9768b66f1506f6bab05eaefa82e65cf6b37b Mon Sep 17 00:00:00 2001 From: DarkIntaqt <61588850+DarkIntaqt@users.noreply.github.com> Date: Thu, 16 May 2024 23:16:11 +0200 Subject: [PATCH] better filtering --- src/module/Challenges.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/Challenges.js b/src/module/Challenges.js index fec86b0..273f454 100644 --- a/src/module/Challenges.js +++ b/src/module/Challenges.js @@ -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 {