Skip to content

Commit

Permalink
alchemy sets filter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Manwe-777 committed Oct 18, 2023
1 parent 9976ccb commit f5330e8
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/SetsFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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") ||
Expand Down

0 comments on commit f5330e8

Please sign in to comment.