File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Sources/ComposableNavigation Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public struct ModalNavigation<Item: Equatable> {
22
22
}
23
23
24
24
@CasePathable
25
- public enum Action {
25
+ public enum Action : Equatable {
26
26
case set( StyledItem ? , animated: Bool = true )
27
27
case dismiss( animated: Bool = true )
28
28
case presentFullScreen( Item , animated: Bool = true )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public struct StackNavigation<Item: Equatable> {
26
26
}
27
27
28
28
@CasePathable
29
- public enum Action {
29
+ public enum Action : Equatable {
30
30
case pushItem( Item , animated: Bool = true )
31
31
case pushItems( [ Item ] , animated: Bool = true )
32
32
case popItem( animated: Bool = true )
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public struct TabNavigation<Item: Equatable> {
28
28
}
29
29
30
30
@CasePathable
31
- public enum Action {
31
+ public enum Action : Equatable {
32
32
case setActiveItem( Item )
33
33
case setActiveIndex( Int )
34
34
case setItems( [ Item ] , animated: Bool = true )
You can’t perform that action at this time.
0 commit comments