We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc1111f commit c439547Copy full SHA for c439547
src/screens/my/Favorite.tsx
@@ -22,7 +22,7 @@ const FavoriteTopics = ({
22
if (!likeTopics) {
23
return <Placeholder />
24
}
25
- return <TopicCardList topics={likeTopics} canLoadMoreContent={false} searchIndicator={false} />
+ return <TopicCardList topics={[...likeTopics].reverse()} canLoadMoreContent={false} searchIndicator={false} />
26
27
28
return <View style={[SylCommon.Layout.fill, SylCommon.View.background(theme)]}>{renderContent()}</View>
0 commit comments