(e)
| 25 | dispatch(listProducts(category, searchKeyword, sortOrder)); |
| 26 | }; |
| 27 | const sortHandler = (e) => { |
| 28 | setSortOrder(e.target.value); |
| 29 | dispatch(listProducts(category, searchKeyword, sortOrder)); |
| 30 | }; |
| 31 | |
| 32 | return ( |
| 33 | <> |
nothing calls this directly
no test coverage detected