Fixes loading of the top nav feed name

This commit is contained in:
Vitor Pamplona
2026-04-08 14:39:15 -04:00
parent 189dd35ff6
commit 5b2127cb80
@@ -122,7 +122,7 @@ fun FeedFilterSpinner(
var selected by
remember(placeholderCode, options) {
mutableStateOf(
options.firstOrNull { it.code == placeholderCode },
options.firstOrNull { it.code.code == placeholderCode.code },
)
}