[useDispatch()](https://react-redux.js.org/api/hooks#usedispatch) does **NOT** accept a function parameter. It will generate below snippet: ```js const dispatch = useDispatch(function) ```  Expect: ```js const dispatch = useDispatch() ```