From bee52a601a1a3a6e43ba378543f1922bdce9e685 Mon Sep 17 00:00:00 2001 From: Wenchen Li <9028430+neo@users.noreply.github.com> Date: Fri, 25 Sep 2020 15:14:19 -0400 Subject: [PATCH] Fix a mismatch --- src/pages/from-redux-to-hooks-case-study/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/from-redux-to-hooks-case-study/index.md b/src/pages/from-redux-to-hooks-case-study/index.md index 3411c2b..b58668f 100644 --- a/src/pages/from-redux-to-hooks-case-study/index.md +++ b/src/pages/from-redux-to-hooks-case-study/index.md @@ -210,7 +210,7 @@ function useFilteredArticles() { const filteredArticles = useMemo( () => filterArticles(articles, filters), - [articles, query] + [articles, filters] ); return filteredArticles; @@ -303,4 +303,4 @@ With hooks, on the other hand, we at least can be sure that React team "has our --- -[Discuss on Twitter](https://twitter.com/latviancoder/status/1114485719307825153) | [Edit this post on Github](https://github.com/latviancoder/staleclosures.dev/edit/master/src/pages/from-redux-to-hooks-case-study/index.md) \ No newline at end of file +[Discuss on Twitter](https://twitter.com/latviancoder/status/1114485719307825153) | [Edit this post on Github](https://github.com/latviancoder/staleclosures.dev/edit/master/src/pages/from-redux-to-hooks-case-study/index.md)