Replies: 1 comment 7 replies
-
Hi @arbyruns, the issue you are running into is that you are sending binding actions into the system but you haven't hooked up your reducer with the binding logic. So no changes are going to actually be made to your state. Unfortunately that warning message describes the solution for the new The fix is for you to use the Reducer { state, action, environment in
}
.binding() Does that fix the warning? |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We're currently behind in our structure in our project where we're setting our state and action like so
We're running into an issue where we're prompted with some issue and a solution of
To fix this, invoke "BindingReducer()" from your feature reducer's "body".
I've tried adding
BindingReducer()
before the Reducer, but running into some errors and I'm not entirely sure this is the correct approach.Beta Was this translation helpful? Give feedback.
All reactions