Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions MyLibrary/Sources/ScheduleFeature/Schedule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ public struct Schedule {
}
}

@Reducer(state: .equatable)
@Reducer
public enum Path {
case detail(ScheduleDetail)
}

@Reducer(state: .equatable)
@Reducer
public enum Destination {}

@Dependency(DataClient.self) var dataClient
Expand Down Expand Up @@ -109,6 +109,9 @@ public struct Schedule {
}
}

extension Schedule.Path.State: Equatable {}
extension Schedule.Destination.State: Equatable {}

@ViewAction(for: Schedule.self)
public struct ScheduleView: View {

Expand Down
4 changes: 3 additions & 1 deletion MyLibrary/Sources/trySwiftFeature/Organizers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public struct Organizers {
}
}

@Reducer(state: .equatable)
@Reducer
public enum Destination {
case profile(Profile)
}
Expand All @@ -60,6 +60,8 @@ public struct Organizers {
}
}

extension Organizers.Destination.State: Equatable {}

@ViewAction(for: Organizers.self)
public struct OrganizersView: View {

Expand Down
4 changes: 3 additions & 1 deletion MyLibrary/Sources/trySwiftFeature/trySwift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public struct TrySwift {
}
}

@Reducer(state: .equatable)
@Reducer
public enum Path {
case organizers(Organizers)
case profile(Profile)
Expand Down Expand Up @@ -79,6 +79,8 @@ public struct TrySwift {
}
}

extension TrySwift.Path.State: Equatable {}

@ViewAction(for: TrySwift.self)
public struct TrySwiftView: View {

Expand Down
3 changes: 3 additions & 0 deletions trySwiftTokyo.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

76 changes: 47 additions & 29 deletions trySwiftTokyo.xcworkspace/xcshareddata/swiftpm/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.