diff --git a/docs/tutorials/essentials/part-6-performance-normalization.md b/docs/tutorials/essentials/part-6-performance-normalization.md index 34a89c7fda..7c1ed554ad 100644 --- a/docs/tutorials/essentials/part-6-performance-normalization.md +++ b/docs/tutorials/essentials/part-6-performance-normalization.md @@ -1215,7 +1215,7 @@ function PostExcerpt({ postId }: PostExcerptProps) { export const PostsList = () => { const dispatch = useDispatch() // highlight-next-line - const orderedPostIds = useSelector(selectPostIds) + const orderedPostIds = useAppSelector(selectPostIds) // omit other selections and effects