From c4e33ef27c770f902a84ff05d5a872665c00f659 Mon Sep 17 00:00:00 2001 From: Brannon Wadforth Date: Fri, 14 Jun 2019 23:49:01 +1000 Subject: [PATCH] Removing redundant code comment. Comment referenced a hook that no longer exists (useActions). --- src/hooks/useDispatch.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/hooks/useDispatch.js b/src/hooks/useDispatch.js index d88dd406e..73bdc9e12 100644 --- a/src/hooks/useDispatch.js +++ b/src/hooks/useDispatch.js @@ -1,9 +1,7 @@ import { useStore } from './useStore' /** - * A hook to access the redux `dispatch` function. Note that in most cases where you - * might want to use this hook it is recommended to use `useActions` instead to bind - * action creators to the `dispatch` function. + * A hook to access the redux `dispatch` function. * * @returns {any|function} redux store's `dispatch` function *