(e)
| 21 | }, [category]); |
| 22 | |
| 23 | const submitHandler = (e) => { |
| 24 | e.preventDefault(); |
| 25 | dispatch(listProducts(category, searchKeyword, sortOrder)); |
| 26 | }; |
| 27 | const sortHandler = (e) => { |
| 28 | setSortOrder(e.target.value); |
| 29 | dispatch(listProducts(category, searchKeyword, sortOrder)); |
nothing calls this directly
no test coverage detected