diff --git a/src/components/Sort/Sort.jsx b/src/components/Sort/Sort.jsx index 509339d26..6e9f4d499 100644 --- a/src/components/Sort/Sort.jsx +++ b/src/components/Sort/Sort.jsx @@ -2,7 +2,7 @@ import React, { useState } from 'react'; import { sortByOptionsOrgsPlacesPerson, sortOrder } from '../../constants/sortByOptions'; import { useTranslation } from 'react-i18next'; import { Button, Dropdown, Space } from 'antd'; -import { DownOutlined, SortAscendingOutlined, SortDescendingOutlined } from '@ant-design/icons'; +import { SortAscendingOutlined, SortDescendingOutlined } from '@ant-design/icons'; function Sort() { const { t } = useTranslation(); @@ -22,13 +22,14 @@ function Sort() { defaultSelectedKeys: [filter?.sort], // onSelect: onSortSelect, }} - trigger={['click']}> -