From 5b0f59533fd7a7dfd3ce55ece38f1f836825323b Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Thu, 13 Jul 2023 11:29:03 -0700 Subject: [PATCH] wip --- Examples/Standups/Standups/AppFeature.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Examples/Standups/Standups/AppFeature.swift b/Examples/Standups/Standups/AppFeature.swift index 42d63fc2f63a..54577eca04d7 100644 --- a/Examples/Standups/Standups/AppFeature.swift +++ b/Examples/Standups/Standups/AppFeature.swift @@ -127,19 +127,19 @@ struct AppView: View { switch $0 { case .detail: CaseLet( - state: /AppFeature.Path.State.detail, + /AppFeature.Path.State.detail, action: AppFeature.Path.Action.detail, then: StandupDetailView.init(store:) ) case .meeting: CaseLet( - state: /AppFeature.Path.State.meeting, + /AppFeature.Path.State.meeting, action: AppFeature.Path.Action.meeting, then: MeetingView.init(store:) ) case .record: CaseLet( - state: /AppFeature.Path.State.record, + /AppFeature.Path.State.record, action: AppFeature.Path.Action.record, then: RecordMeetingView.init(store:) )