Updated on 2026-08-14

This commit is contained in:
Tangem 2026-01-19 10:23:07 +01:00
parent 0741b83490
commit 04ce95d61a
2 changed files with 3 additions and 3 deletions

View file

@ -203,7 +203,7 @@ internal class FeedComponentModel @Inject constructor(
put(it, MarketChartUM.Loading)
}
}.toPersistentHashMap(),
currentSortByType = SortByTypeUM.Trending,
currentSortByType = SortByTypeUM.TopGainers,
),
globalState = GlobalFeedState.Loading,
)

View file

@ -52,10 +52,10 @@ internal data class MarketChartConfig(
val currentSortByType: SortByTypeUM = SortByTypeUM.TopGainers,
) {
fun getFilterPreset() = persistentListOf(
SortByTypeUM.Trending,
SortByTypeUM.ExperiencedBuyers,
SortByTypeUM.TopGainers,
SortByTypeUM.TopLosers,
SortByTypeUM.ExperiencedBuyers,
SortByTypeUM.Trending,
)
}