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) } }