damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit ab853c406c1b6c7d71d4ee4bdfa90969213a8582
parent 8a8882467713f5f30e2bc20a9595b06f64e6bb4f
Author: Luis Cabrera <luis.cabrera@usi.ch>
Date:   Mon, 10 Apr 2023 00:17:27 +0200

Display follows in most recent to oldest

Changelog-Changed: Display follows in most recent to oldest

Diffstat:
Mdamus/Views/FollowingView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Views/FollowingView.swift b/damus/Views/FollowingView.swift @@ -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) } }