From f5330e81485f544195e4f98d89c6d54bc96860af Mon Sep 17 00:00:00 2001 From: Manwe Date: Tue, 17 Oct 2023 22:06:59 -0300 Subject: [PATCH] alchemy sets filter fix --- src/components/SetsFilter.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/components/SetsFilter.tsx b/src/components/SetsFilter.tsx index cccc999..5716626 100644 --- a/src/components/SetsFilter.tsx +++ b/src/components/SetsFilter.tsx @@ -80,12 +80,7 @@ export default function SetsFilter(props: SetsFilterProps): JSX.Element { allSets.forEach((s) => { if (standard.includes(s.arenacode) || standard.includes(s.code)) { standardSets.push(s); - } else if ( - s.arenacode.startsWith("Y23") || - s.code.startsWith("Y23") || - s.arenacode.startsWith("Y22") || - s.code.startsWith("Y22") - ) { + } else if (s.arenacode.startsWith("Y2") || s.code.startsWith("Y2")) { alchemySets.push(s); } else if ( s.arenacode.startsWith("AHA") ||