Skip to content

Commit

Permalink
Replace CaseLet case with Error
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoya ito committed Oct 19, 2021
1 parent 2686ba1 commit 58799f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ios/Sources/TimetableFeature/List/TimetableScreen.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ public struct TimetableScreen: View {
then: TimetableLoadedView.init(store:)
)
CaseLet(
state: /TimetableState.needToInitialize,
action: TimetableAction.loading,
then: LoadingView.init(store:)
state: /TimetableState.errorOccurred,
action: TimetableAction.error,
then: ErrorView.init(store:)
)
}
}
Expand Down

0 comments on commit 58799f0

Please sign in to comment.