chore: change filter order

This commit is contained in:
jinhojang6 2024-10-03 23:41:13 +09:00
parent b345e5659f
commit b6c14d4e10
No known key found for this signature in database
GPG Key ID: 1762F21FE8B543F8
2 changed files with 10 additions and 10 deletions

View File

@ -23,14 +23,14 @@ export const COMP = [
export const BACKGROUND = [ export const BACKGROUND = [
'[CAMOED]', '[CAMOED]',
'Cypress',
'[CYPHERED]', '[CYPHERED]',
'[REDACTED]',
'Cypress',
'LimeWire', 'LimeWire',
'Mariana', 'Mariana',
'Marooned', 'Marooned',
'Nightfall', 'Nightfall',
'Phantom', 'Phantom',
'[REDACTED]',
'Rust', 'Rust',
'Sanguine', 'Sanguine',
'Sulphur', 'Sulphur',
@ -40,32 +40,32 @@ export const BACKGROUND = [
export const SKIN = [ export const SKIN = [
'[CAMOED]', '[CAMOED]',
'[CYPHERED]', '[CYPHERED]',
'[REDACTED]',
'IC1', 'IC1',
'IC2', 'IC2',
'IC3', 'IC3',
'IC4', 'IC4',
'IC6', 'IC6',
'[REDACTED]',
] ]
export const HELMET = [ export const HELMET = [
'Aurora crested helm',
'[CAMOED]', '[CAMOED]',
'Celestial crested helm',
'[CYPHERED]', '[CYPHERED]',
'Ethereal crested helm',
'[REDACTED]', '[REDACTED]',
'Aurora crested helm',
'Celestial crested helm',
'Ethereal crested helm',
'Regal crested helm', 'Regal crested helm',
'Verdant crested helm', 'Verdant crested helm',
] ]
export const JACKET = [ export const JACKET = [
'Amethyst frock coat',
'[CAMOED]', '[CAMOED]',
'Carmine frock coat',
'[CYPHERED]', '[CYPHERED]',
'[REDACTED]',
'Amethyst frock coat',
'Carmine frock coat',
'Cobalt frock coat', 'Cobalt frock coat',
'Emerald frock coat', 'Emerald frock coat',
'[REDACTED]',
'Sulphur frock coat', 'Sulphur frock coat',
] ]

View File

@ -113,7 +113,7 @@ const ExploreSection: React.FC<ExploreSectionProps> = () => {
/> />
</DropdownContainer> </DropdownContainer>
<OperatorGrid <OperatorGrid
key={randomizedOperators?.join(',')} key={JSON.stringify(filter)}
data={randomizedOperators as any} data={randomizedOperators as any}
isLoading={isLoading} isLoading={isLoading}
/> />