Fix warning
This commit is contained in:
parent
d913c6db0c
commit
9094f2e823
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ class DeveloperSettingsPresenter(
|
||||||
val tracingLogPacks by produceState(persistentListOf()) {
|
val tracingLogPacks by produceState(persistentListOf()) {
|
||||||
appPreferencesStore.getTracingLogPacksFlow()
|
appPreferencesStore.getTracingLogPacksFlow()
|
||||||
// Sort the entries alphabetically by its title
|
// Sort the entries alphabetically by its title
|
||||||
.map { it.sortedBy { it.title } }
|
.map { it.sortedBy { pack -> pack.title } }
|
||||||
.collectLatest { value = it.toImmutableList() }
|
.collectLatest { value = it.toImmutableList() }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue