From 8ec1fa29b1442902094c358068596d8bfcfc8864 Mon Sep 17 00:00:00 2001 From: Joel Klabo Date: Wed, 29 Mar 2023 19:18:43 -0700 Subject: [PATCH] Add a Divider in the Follows List for Large Screens Changelog-Added: Add a Divider in the Follows List for Large Screens Closes: #838 --- 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 41e9bfc6..7c979472 100644 --- a/damus/Views/FollowingView.swift +++ b/damus/Views/FollowingView.swift @@ -33,6 +33,7 @@ struct FollowersView: View { LazyVStack(alignment: .leading) { ForEach(followers.contacts ?? [], id: \.self) { pk in FollowUserView(target: .pubkey(pk), damus_state: damus_state) + Divider() } } .padding() @@ -45,7 +46,6 @@ struct FollowersView: View { followers.unsubscribe() } } - } struct FollowingView: View {