Display follows in most recent to oldest

Changelog-Changed: Display follows in most recent to oldest
This commit is contained in:
Luis Cabrera
2023-04-10 00:17:27 +02:00
committed by William Casarin
parent 8a88824677
commit ab853c406c

View File

@@ -66,7 +66,7 @@ struct FollowingView: View {
var body: some View {
ScrollView {
LazyVStack(alignment: .leading) {
ForEach(following.contacts, id: \.self) { pk in
ForEach(following.contacts.reversed(), id: \.self) { pk in
FollowUserView(target: .pubkey(pk), damus_state: damus_state)
}
}