Skip to content

Commit

Permalink
fix: remove unnecessary r filters from quick select
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtIeSocks committed Jan 11, 2024
1 parent 4b1cd2a commit f0a3b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layout/drawer/SelectorList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function SelectorList({ category, subCategory, label, height = 400 }) {
if (key === 'global') return false
switch (subCategory) {
case 'raids':
return key.startsWith('r') || key.startsWith('e')
return key.startsWith('e')
case 'lures':
return key.startsWith('l')
case 'invasions':
Expand Down

0 comments on commit f0a3b28

Please sign in to comment.