mirror of
https://github.com/romancm/gamebrary
synced 2025-02-17 19:48:24 +00:00
linter fix
This commit is contained in:
parent
979efc898b
commit
0d5a8a4c2e
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ export default {
|
|||
} else {
|
||||
filteredPlatforms = filterField && PLATFORM_FILTER_FIELDS.includes(filterField)
|
||||
? state.platforms.filter(({ category }) => category === filterField)
|
||||
: filteredPlatforms = state.platforms.filter(({ popular }) => popular);;
|
||||
: filteredPlatforms = state.platforms.filter(({ popular }) => popular);
|
||||
}
|
||||
|
||||
const sortedPlatforms = orderby(filteredPlatforms, sortField);
|
||||
|
|
Loading…
Add table
Reference in a new issue