Skip to content

Commit

Permalink
fix loot tiers page
Browse files Browse the repository at this point in the history
  • Loading branch information
Razzmatazzz committed Jul 4, 2024
1 parent 4e22953 commit 70ca7bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/loot-tiers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const arrayChunk = (inputArray, chunkLength) => {
function LootTier(props) {
const [numberFilter, setNumberFilter] = useState(DEFAULT_MAX_ITEMS);
const [minPrice, setMinPrice] = useStateWithLocalStorage('minPrice', 0);
const hasFlea = useSelector((state) => state.settings[state.setttings.gameMode].hasFlea);
const hasFlea = useSelector((state) => state.settings[state?.setttings?.gameMode ?? 'regular'].hasFlea);
const [includeMarked, setIncludeMarked] = useStateWithLocalStorage(
'includeMarked',
false,
Expand Down

0 comments on commit 70ca7bf

Please sign in to comment.