Fix event dividers

This commit is contained in:
OlegAba
2023-02-21 21:54:10 -05:00
committed by William Casarin
parent 83c9289345
commit a2749eaaaa
4 changed files with 13 additions and 3 deletions

View File

@@ -41,6 +41,9 @@ struct DirectMessagesView: View {
ForEach(dms, id: \.0) { tup in
MaybeEvent(tup)
.padding(.top, 10)
Divider()
.padding([.top], 10)
}
}
}