Skip to content

Commit 1375cc9

Browse files
committed
[fix] #152 피드백 반영
1 parent 0a593a0 commit 1375cc9

File tree

8 files changed

+5
-8
lines changed

8 files changed

+5
-8
lines changed

Projects/App/ShareExtension/Sources/ShareRootFeature.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ struct ShareRootFeature {
200200
.ifLet(\.intro, action: \.intro) { IntroFeature() }
201201
.ifLet(\.contentSetting, action: \.contentSetting) { ContentSettingFeature() }
202202
.forEach(\.path, action: \.path)
203-
._printChanges()
204203
}
205204
}
206205

Projects/Feature/FeatureCategoryDetail/Sources/CategoryDetailView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ private extension CategoryDetailView {
152152
} else {
153153
ScrollView(showsIndicators: false) {
154154
LazyVStack(spacing: 0) {
155-
ForEachStore(
155+
ForEach(
156156
store.scope(state: \.contents, action: \.contents)
157157
) { store in
158158
let isFirst = store.state.id == self.store.contents.first?.id

Projects/Feature/FeatureCategorySharing/Sources/CategorySharing/CategorySharingView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ private extension CategorySharingView {
103103
} else {
104104
ScrollView(showsIndicators: false) {
105105
LazyVStack(spacing: 0) {
106-
ForEachStore(
106+
ForEach(
107107
store.scope(state: \.contents, action: \.contents)
108108
) { store in
109109
let isFirst = store.state.id == self.store.contents.first?.id

Projects/Feature/FeatureContentCard/Sources/ContentCard/ContentCardFeature.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ public struct ContentCardFeature {
8989
/// - Reducer body
9090
public var body: some ReducerOf<Self> {
9191
Reduce(self.core)
92-
._printChanges()
9392
}
9493
}
9594
//MARK: - FeatureAction Effect

Projects/Feature/FeatureContentList/Sources/ContentList/ContentListFeature.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ public struct ContentListFeature {
151151
.forEach(\.contents, action: \.contents) {
152152
ContentCardFeature()
153153
}
154-
._printChanges()
155154
}
156155
}
157156
//MARK: - FeatureAction Effect

Projects/Feature/FeatureContentList/Sources/ContentList/ContentListView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private extension ContentListView {
100100
} else {
101101
ScrollView {
102102
LazyVStack(spacing: 0) {
103-
ForEachStore(
103+
ForEach(
104104
store.scope(state: \.contents, action: \.contents)
105105
) { store in
106106
let isFirst = store.state.id == self.store.contents.first?.id

Projects/Feature/FeaturePokit/Sources/PokitRootView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ private extension PokitRootView {
191191
var unclassifiedList: some View {
192192
ScrollView {
193193
LazyVStack(spacing: 0) {
194-
ForEachStore(
194+
ForEach(
195195
store.scope(state: \.contents, action: \.contents)
196196
) { store in
197197
let isFirst = store.state.id == self.store.contents.first?.id

Projects/Feature/FeatureSetting/Sources/Search/PokitSearchView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ private extension PokitSearchView {
294294
if !store.isLoading {
295295
ScrollView {
296296
LazyVStack(spacing: 0) {
297-
ForEachStore(
297+
ForEach(
298298
store.scope(state: \.contents, action: \.contents)
299299
) { store in
300300
let isFirst = store.state.id == self.store.contents.first?.id

0 commit comments

Comments
 (0)