Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/AppVersions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ object AppVersions {
const val APPLICATION_ID = "com.random.user"
const val COMPILE_SDK = 35
const val MIN_SDK = 26
const val APP_VERSION_CODE = 3
const val APP_VERSION_NAME = "1.2.0"
const val APP_VERSION_CODE = 4
const val APP_VERSION_NAME = "1.2.1"
const val JVM_TARGET = "17"
val javaVersion = JavaVersion.VERSION_17
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ internal fun UserList(
}

LaunchedEffect(
reachedBottom,
state.contentState,
) {
snapshotFlow { reachedBottom }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ internal fun UserSearchView(
) {
val searchState = rememberSaveable { mutableStateOf(search) }

LaunchedEffect(
searchState.value,
) {
LaunchedEffect(Unit) {
snapshotFlow { searchState.value }
.distinctUntilChanged()
.debounce(200)
Expand Down