Fix warning

This commit is contained in:
Benoit Marty
2025-10-17 10:46:47 +02:00
committed by Benoit Marty
parent d913c6db0c
commit 9094f2e823

View File

@@ -84,7 +84,7 @@ class DeveloperSettingsPresenter(
val tracingLogPacks by produceState(persistentListOf()) {
appPreferencesStore.getTracingLogPacksFlow()
// Sort the entries alphabetically by its title
.map { it.sortedBy { it.title } }
.map { it.sortedBy { pack -> pack.title } }
.collectLatest { value = it.toImmutableList() }
}