Skip to content

Commit

Permalink
[fix] #152 피드백 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
ShapeKim98 committed Nov 18, 2024
1 parent 0a593a0 commit 1375cc9
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 8 deletions.
1 change: 0 additions & 1 deletion Projects/App/ShareExtension/Sources/ShareRootFeature.swift
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ struct ShareRootFeature {
.ifLet(\.intro, action: \.intro) { IntroFeature() }
.ifLet(\.contentSetting, action: \.contentSetting) { ContentSettingFeature() }
.forEach(\.path, action: \.path)
._printChanges()
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ private extension CategoryDetailView {
} else {
ScrollView(showsIndicators: false) {
LazyVStack(spacing: 0) {
ForEachStore(
ForEach(
store.scope(state: \.contents, action: \.contents)
) { store in
let isFirst = store.state.id == self.store.contents.first?.id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private extension CategorySharingView {
} else {
ScrollView(showsIndicators: false) {
LazyVStack(spacing: 0) {
ForEachStore(
ForEach(
store.scope(state: \.contents, action: \.contents)
) { store in
let isFirst = store.state.id == self.store.contents.first?.id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ public struct ContentCardFeature {
/// - Reducer body
public var body: some ReducerOf<Self> {
Reduce(self.core)
._printChanges()
}
}
//MARK: - FeatureAction Effect
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ public struct ContentListFeature {
.forEach(\.contents, action: \.contents) {
ContentCardFeature()
}
._printChanges()
}
}
//MARK: - FeatureAction Effect
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private extension ContentListView {
} else {
ScrollView {
LazyVStack(spacing: 0) {
ForEachStore(
ForEach(
store.scope(state: \.contents, action: \.contents)
) { store in
let isFirst = store.state.id == self.store.contents.first?.id
Expand Down
2 changes: 1 addition & 1 deletion Projects/Feature/FeaturePokit/Sources/PokitRootView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private extension PokitRootView {
var unclassifiedList: some View {
ScrollView {
LazyVStack(spacing: 0) {
ForEachStore(
ForEach(
store.scope(state: \.contents, action: \.contents)
) { store in
let isFirst = store.state.id == self.store.contents.first?.id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ private extension PokitSearchView {
if !store.isLoading {
ScrollView {
LazyVStack(spacing: 0) {
ForEachStore(
ForEach(
store.scope(state: \.contents, action: \.contents)
) { store in
let isFirst = store.state.id == self.store.contents.first?.id
Expand Down

0 comments on commit 1375cc9

Please sign in to comment.