File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed
detail/src/main/kotlin/com/ninecraft/booket/feature/detail/book
search/src/main/kotlin/com/ninecraft/booket/feature/search/book Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -249,8 +249,6 @@ class BookDetailPresenter @AssistedInject constructor(
249249 bookDetail = bookDetail,
250250 seedsStats = seedsStates,
251251 readingRecords = readingRecords,
252- currentStartIndex = currentStartIndex,
253- isLastPage = isLastPage,
254252 isBookUpdateBottomSheetVisible = isBookUpdateBottomSheetVisible,
255253 isRecordSortBottomSheetVisible = isRecordSortBottomSheetVisible,
256254 currentBookStatus = currentBookStatus,
Original file line number Diff line number Diff line change @@ -219,8 +219,6 @@ class BookSearchPresenter @AssistedInject constructor(
219219 recentSearches = recentSearches.toImmutableList(),
220220 searchResult = searchResult,
221221 books = books,
222- startIndex = currentStartIndex,
223- isLastPage = isLastPage,
224222 selectedBookIsbn = selectedBookIsbn,
225223 isBookRegisterBottomSheetVisible = isBookRegisterBottomSheetVisible,
226224 selectedBookStatus = selectedBookStatus,
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ data class BookSearchUiState(
2626 val recentSearches : ImmutableList <String > = persistentListOf(),
2727 val searchResult : BookSearchModel = BookSearchModel (),
2828 val books : ImmutableList <BookSummaryModel > = persistentListOf(),
29- val startIndex : Int = 1 ,
30- val isLastPage : Boolean = false ,
3129 val selectedBookIsbn : String = " " ,
3230 val isBookRegisterBottomSheetVisible : Boolean = false ,
3331 val selectedBookStatus : BookStatus ? = null ,
You can’t perform that action at this time.
0 commit comments