File tree Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -88,12 +88,12 @@ struct WishlistViewIOS: View {
88
88
89
89
private var feedbackStateSelection : [ LocalWishState ] {
90
90
return [
91
- LocalWishState . all,
92
- LocalWishState . library ( . pending) ,
93
- LocalWishState . library ( . inReview) ,
94
- LocalWishState . library ( . planned) ,
95
- LocalWishState . library ( . inProgress) ,
96
- LocalWishState . library ( . completed) ,
91
+ . all,
92
+ . library( . pending) ,
93
+ . library( . inReview) ,
94
+ . library( . planned) ,
95
+ . library( . inProgress) ,
96
+ . library( . completed) ,
97
97
]
98
98
}
99
99
Original file line number Diff line number Diff line change @@ -78,12 +78,12 @@ struct WishlistContainer: View {
78
78
79
79
private var feedbackStateSelection : [ LocalWishState ] {
80
80
return [
81
- LocalWishState . all,
82
- LocalWishState . library ( . pending) ,
83
- LocalWishState . library ( . inReview) ,
84
- LocalWishState . library ( . planned) ,
85
- LocalWishState . library ( . inProgress) ,
86
- LocalWishState . library ( . completed) ,
81
+ . all,
82
+ . library( . pending) ,
83
+ . library( . inReview) ,
84
+ . library( . planned) ,
85
+ . library( . inProgress) ,
86
+ . library( . completed) ,
87
87
]
88
88
}
89
89
@@ -115,7 +115,8 @@ struct WishlistContainer: View {
115
115
if WishKit . config. buttons. segmentedControl. display == . show {
116
116
Picker ( " " , selection: $selectedWishState) {
117
117
ForEach ( feedbackStateSelection, id: \. self) { state in
118
- Text ( " \( state. description) ( \( getCountFor ( state: state) ) ) " ) . tag ( state)
118
+ Text ( " \( state. description) ( \( getCountFor ( state: state) ) ) " )
119
+ . tag ( state)
119
120
}
120
121
} . frame ( maxWidth: 150 )
121
122
}
You can’t perform that action at this time.
0 commit comments