From 5415a56cef86e430aa46b13a8e48dcf57d85dad5 Mon Sep 17 00:00:00 2001 From: Alec Barlow Date: Tue, 28 Mar 2017 16:46:26 -0700 Subject: [PATCH] post except --- _posts/2017-03-28-proxies-with-redux-types.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2017-03-28-proxies-with-redux-types.md b/_posts/2017-03-28-proxies-with-redux-types.md index 8711673..f0fd728 100644 --- a/_posts/2017-03-28-proxies-with-redux-types.md +++ b/_posts/2017-03-28-proxies-with-redux-types.md @@ -12,6 +12,7 @@ One of the most common problems that I run into when using Redux is trying to fi +One of the most common problems that I run into when using Redux is trying to figure out why an action is not being captured by a reducer. For someone just getting starting with Redux, debugging this issue can be especially overwhelming because of how Redux manages data flow. So before you start pouring over configuration code, or the logic contained in your action creators and reducers, please, make sure your action types are defined and spelled correctly. In any application that I have built, most bugs that I have run into are simply due to typos. However, the solution to this particular problem is harder to spot because no errors are raised when the application is run. Take a look at the snippet below.