fix sort order in states for space app (#5374)
This commit is contained in:
parent
0a1c656865
commit
89633d8b2a
2 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@ type Props = {
|
|||
export const AppliedStateFilters: React.FC<Props> = observer((props) => {
|
||||
const { handleRemove, values } = props;
|
||||
|
||||
const { states } = useStates();
|
||||
const { sortedStates: states } = useStates();
|
||||
|
||||
return (
|
||||
<>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ type Props = {
|
|||
export const FilterState: React.FC<Props> = observer((props) => {
|
||||
const { appliedFilters, handleUpdate, searchQuery } = props;
|
||||
|
||||
const { states } = useStates();
|
||||
const { sortedStates: states } = useStates();
|
||||
|
||||
const [itemsToRender, setItemsToRender] = useState(5);
|
||||
const [previewEnabled, setPreviewEnabled] = useState(true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue