Skip to content

Commit

Permalink
ALTAPPS-1092: Shared set page_size to 50 getTrackInterviewSteps
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-magda committed Jan 5, 2024
1 parent f8e3de6 commit 7683850
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ internal class InterviewStepsStateRepositoryImpl(
) : InterviewStepsStateRepository, BaseStateRepository<List<Long>>() {
override suspend fun loadState(): Result<List<Long>> =
trackInterviewStepsRemoteDataSource
.getTrackInterviewSteps(pageSize = 20, page = 1)
.getTrackInterviewSteps(pageSize = 50, page = 1)
.map { it.steps.map { step -> step.id } }
}

0 comments on commit 7683850

Please sign in to comment.