diff --git a/src/pages/sprints.astro b/src/pages/sprints.astro index f47c90158..c17486b3d 100644 --- a/src/pages/sprints.astro +++ b/src/pages/sprints.astro @@ -30,7 +30,6 @@ const sprints = await getCollection("sprints", ({ data }) => { Python Level: All Levels - Any Beginner Intermediate Advanced @@ -87,7 +86,7 @@ const sprints = await getCollection("sprints", ({ data }) => { const cardElement = card as HTMLElement; const pythonLevel = cardElement.getAttribute('data-python-level'); - const levelMatch = !selectedLevel || pythonLevel === selectedLevel; + const levelMatch = !selectedLevel || pythonLevel === selectedLevel || pythonLevel === 'Any'; if (levelMatch) { cardElement.style.display = 'block';