From ab853c406c1b6c7d71d4ee4bdfa90969213a8582 Mon Sep 17 00:00:00 2001 From: Luis Cabrera Date: Mon, 10 Apr 2023 00:17:27 +0200 Subject: [PATCH] Display follows in most recent to oldest Changelog-Changed: Display follows in most recent to oldest --- damus/Views/FollowingView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/FollowingView.swift b/damus/Views/FollowingView.swift index 2a2f4094..53b6f945 100644 --- 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) } }