From b069d51072f83ce698f759d57563f091c44fc6ee Mon Sep 17 00:00:00 2001 From: synwix Date: Mon, 17 Nov 2025 16:06:32 +0300 Subject: [PATCH] Docs: Enhance and correct selector memoization example in Essentials Part 6 (fixes #4820) --- docs/tutorials/essentials/part-6-performance-normalization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/essentials/part-6-performance-normalization.md b/docs/tutorials/essentials/part-6-performance-normalization.md index c0889a37cf..f24ec1f388 100644 --- a/docs/tutorials/essentials/part-6-performance-normalization.md +++ b/docs/tutorials/essentials/part-6-performance-normalization.md @@ -899,7 +899,7 @@ selectPostsByUser(state1, 'user1') // Output selector runs, because `userId` changed selectPostsByUser(state1, 'user2') -dispatch(reactionAdded()) +dispatch(fetchUsers()) const state2 = getState() // Output selector does not run, because `posts` and `userId` are the same selectPostsByUser(state2, 'user2')