Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/#19-home' into feature/#19
Browse files Browse the repository at this point in the history
…-home
  • Loading branch information
jiwon2724 committed Aug 17, 2024
2 parents 3f5f11d + d940280 commit 17a8a2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ object PokitMapper {
id = data.categoryImage.imageId,
url = data.categoryImage.imageUrl
),
linkCount = data.contentCount,
createdAt = data.createdAt
linkCount = data.contentCount
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class LinkPaging(
override val pagingState: StateFlow<SimplePagingState> = _pagingState.asStateFlow()

val _pagingData: MutableStateFlow<List<Link>> = MutableStateFlow(emptyList())

override val pagingData: StateFlow<List<Link>> = _pagingData.asStateFlow()
private var currentPageIndex = initPage
private var requestJob: Job? = null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class PokitPaging(
override val pagingState: StateFlow<SimplePagingState> = _pagingState.asStateFlow()

val _pagingData: MutableStateFlow<List<Pokit>> = MutableStateFlow(emptyList())

override val pagingData: StateFlow<List<Pokit>> = _pagingData.asStateFlow()
private var currentPageIndex = initPage
private var requestJob: Job? = null
Expand Down

0 comments on commit 17a8a2c

Please sign in to comment.