mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-24 12:14:25 +01:00
* Runtime warn when reducer is missing stack integration If SwiftUI writes to a binding and the state is invalid (it is not inserting or removing elements from the stack), then the most likely cause is a missing `forEach` in the reducer (or a missing integration in some parent reducer). This commit adds a runtime warning to detect this issue. * wip