From 36ba961e0dc9db2d6c39c0235f5af828c558ef0d Mon Sep 17 00:00:00 2001 From: TTOzzi Date: Sun, 25 Jun 2023 23:31:24 +0900 Subject: [PATCH] Fix a build error in the 70th episode example code --- .../ComposableArchitecture.playground/Contents.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ) )