We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a36e28e commit fd409c7Copy full SHA for fd409c7
Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.19.md
@@ -46,15 +46,3 @@ struct FeatureView: View {
46
> Important: The store's `ObservableObject` conformance does not have any impact on the actual
47
> observability of the store. You should continue to rely on the ``ObservableState()`` macro for
48
> observation.
49
-
50
-## Initial actions
51
52
-A new `initialAction` has been introduced to the `Store` that will immediately kick off an initial
53
-action when the store is created. This is an alternative to waiting for an `onAppear` or `task`
54
-view modifier to evaluate.
55
56
-```swift
57
-Store(initialState: Feature.State(), initialAction: .initialize) {
58
- Feature()
59
-}
60
-```
0 commit comments