Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/from-redux-to-hooks-case-study/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ function useFilteredArticles() {

const filteredArticles = useMemo(
() => filterArticles(articles, filters),
[articles, query]
[articles, filters]
);

return filteredArticles;
Expand Down Expand Up @@ -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)
[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)