From dcc262261ee67ab4907a6d6945aa9d58c8effeee Mon Sep 17 00:00:00 2001 From: Ben Durrant Date: Fri, 12 Jan 2024 16:55:41 +0000 Subject: [PATCH] Update docs/using-react-redux/usage-with-typescript.md --- docs/using-react-redux/usage-with-typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/using-react-redux/usage-with-typescript.md b/docs/using-react-redux/usage-with-typescript.md index aa4d0315c..0804879dd 100644 --- a/docs/using-react-redux/usage-with-typescript.md +++ b/docs/using-react-redux/usage-with-typescript.md @@ -69,7 +69,7 @@ import type { RootState, AppDispatch } from './store' // highlight-start // Use throughout your app instead of plain `useDispatch` and `useSelector` -export const useAppDispatch = useDispatch.withTypes() +export const useAppDispatch = useDispatch.withTypes() export const useAppSelector = useSelector.withTypes() // highlight-end ```