diff --git a/src/components/Tasks/Toolbar.tsx b/src/components/Tasks/Toolbar.tsx index 2046176..75ffa07 100644 --- a/src/components/Tasks/Toolbar.tsx +++ b/src/components/Tasks/Toolbar.tsx @@ -8,7 +8,6 @@ import MoreVertIcon from "@material-ui/icons/MoreVert"; import MenuItem from "@material-ui/core/MenuItem"; import SortIcon from "@material-ui/icons/Sort"; import SearchIcon from "@material-ui/icons/Search"; -import CloseIcon from "@material-ui/icons/Close"; import TextField from "@material-ui/core/TextField"; import { makeStyles } from "@material-ui/core/styles"; import { Transition } from "react-transition-group"; @@ -57,23 +56,16 @@ interface PropsType { export default function Toolbar(props: PropsType) { const { showCompleted, setShowCompleted, searchTerm, setSearchTerm, showHidden, setShowHidden } = props; - const [showSearchField, setShowSearchField] = React.useState(false); const [sortAnchorEl, setSortAnchorEl] = React.useState(null); const [optionsAnchorEl, setOptionsAnchorEl] = React.useState(null); + const showSearchField = true; const classes = useStyles(); const dispatch = useDispatch(); const taskSettings = useSelector((state: StoreState) => state.settings.taskSettings); const { sortBy } = taskSettings; - const toggleSearchField = () => { - if (showSearchField) { - setSearchTerm(""); - } - setShowSearchField(!showSearchField); - }; - const handleSortChange = (sort: string) => { dispatch(setSettings({ taskSettings: { ...taskSettings, sortBy: sort } })); setSortAnchorEl(null); @@ -109,12 +101,6 @@ export default function Toolbar(props: PropsType) { )} -
- - {showSearchField ? : } - -
-
); -} \ No newline at end of file +}