Skip to content

Commit

Permalink
fix some fypo (#3267)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmhv authored Aug 2, 2024
1 parent 8343030 commit 4864af0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class SyncUpsListTests: XCTestCase {
],
title: "Point-Free morning sync"
)
await store.send(\.addSyncUp.binding.syncUp, editedSyncUp)))) {
await store.send(\.addSyncUp.binding.syncUp, editedSyncUp) {
$0.addSyncUp?.syncUp = editedSyncUp
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct AppView: View {
} destination: { store in
switch store.case {
case let .detail(detailStore):
SyncUpDetail(store: detailStore)
SyncUpDetailView(store: detailStore)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct AppView: View {
} destination: { store in
switch store.case {
case let .detail(detailStore):
SyncUpDetail(store: detailStore)
SyncUpDetailView(store: detailStore)
case let .meeting(meeting, syncUp: syncUp):
MeetingView(meeting: meeting, syncUp: syncUp)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct AppView: View {
} destination: { store in
switch store.case {
case let .detail(detailStore):
SyncUpDetail(store: detailStore)
SyncUpDetailView(store: detailStore)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct AppView: View {
} destination: { store in
switch store.case {
case let .detail(detailStore):
SyncUpDetail(store: detailStore)
SyncUpDetailView(store: detailStore)
case let .meeting(meeting, syncUp: syncUp):
MeetingView(meeting: meeting, syncUp: syncUp)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct AppView: View {
} destination: { store in
switch store.case {
case let .detail(detailStore):
SyncUpDetail(store: detailStore)
SyncUpDetailView(store: detailStore)
case let .meeting(meeting, syncUp: syncUp):
MeetingView(meeting: meeting, syncUp: syncUp)
case let .record(recordStore):
Expand Down

0 comments on commit 4864af0

Please sign in to comment.