diff --git a/0070-composable-state-management-action-pullbacks/ComposableArchitecture.playground/Contents.swift b/0070-composable-state-management-action-pullbacks/ComposableArchitecture.playground/Contents.swift index e24e624e..d65cd793 100644 --- a/0070-composable-state-management-action-pullbacks/ComposableArchitecture.playground/Contents.swift +++ b/0070-composable-state-management-action-pullbacks/ComposableArchitecture.playground/Contents.swift @@ -374,6 +374,6 @@ struct ContentView: View { import PlaygroundSupport PlaygroundPage.current.liveView = UIHostingController( rootView: ContentView( - store: Store(initialValue: AppState(), appReducer) + store: Store(initialValue: AppState(), reducer: appReducer) ) )