You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inital Redux action type is never being caught and initializing state. I noticed inital action type from Redux was always coming in @@INIT instead of @@redux/INIT. I changed the check to test for the regex expression instead /@@.*init/ig which fixed the issue. This catches either @@redux/INIT or @@INIT.
Inital Redux action type is never being caught and initializing state. I noticed inital action type from Redux was always coming in
@@INIT
instead of@@redux/INIT
. I changed the check to test for the regex expression instead/@@.*init/ig
which fixed the issue. This catches either@@redux/INIT
or@@INIT
.See PR #12
The text was updated successfully, but these errors were encountered: