Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis committed Jul 13, 2023
1 parent 2e44808 commit 5b0f595
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Examples/Standups/Standups/AppFeature.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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:)
)
Expand Down

0 comments on commit 5b0f595

Please sign in to comment.