Nat Strangerweather
12/19/2022, 6:16 PMitems(state.newsFeedItems) {println(listOf(it.feedTitle).distinct())}Joffrey
12/19/2022, 6:17 PMlistOf(it.feedTitle) is a list of 1 element. Calling distinct() on it has no effect because there cannot be duplicates in this list.Joffrey
12/19/2022, 6:17 PMitems() I guess)Nat Strangerweather
12/19/2022, 6:18 PM