Skip to content

Commit

Permalink
[fix] #154 ContentList 즐겨찾기 개수 조회 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ShapeKim98 committed Nov 6, 2024
1 parent 90e2e06 commit 68a49a2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,10 @@ private extension ContentListFeature {
func handleDelegateAction(_ action: Action.DelegateAction, state: inout State) -> Effect<Action> {
switch action {
case .컨텐츠_목록_조회:
return .send(.async(.컨텐츠_목록_조회_API), animation: .pokitSpring)
return .merge(
.send(.async(.컨텐츠_목록_조회_API), animation: .pokitSpring),
.send(.async(.컨텐츠_개수_조회_API), animation: .pokitSpring)
)
default:
return .none
}
Expand Down

0 comments on commit 68a49a2

Please sign in to comment.