We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a8d553 commit a2ce3f0Copy full SHA for a2ce3f0
Projects/Feature/FeatureRecommend/Sources/Recommend/RecommendFeature.swift
@@ -212,13 +212,14 @@ private extension RecommendFeature {
212
case .추천_조회_페이징_API:
213
state.domain.pageable.page += 1
214
return .run { [
215
- pageableRequest = BasePageableRequest(
216
- page: state.domain.pageable.page,
217
- size: state.domain.pageable.size,
218
- sort: state.domain.pageable.sort
219
- ),
+ pageable = state.domain.pageable,
220
keyword = state.selectedInterest?.description
221
] send in
+ let pageableRequest = BasePageableRequest(
+ page: pageable.page,
+ size: pageable.size,
+ sort: pageable.sort
222
+ )
223
let contentList = try await contentClient.추천_컨텐츠_조회(
224
pageableRequest,
225
keyword
0 commit comments