Skip to content

Commit

Permalink
For now, use plain string version of inline post content, so that Swi…
Browse files Browse the repository at this point in the history
…ftUI stylings work as expected

Contributes to #399 [BUG] Multiple interactions do not collapse into a single notification
  • Loading branch information
whattherestimefor committed Feb 11, 2025
1 parent d07e989 commit 3396fd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ struct InlinePostPreview: View {
VStack(alignment: .leading) {
header()
if let content = viewModel.content {
Text(content)
Text(String(content.characters[...]))
.font(.subheadline)
.lineLimit(3)
}
Expand Down

0 comments on commit 3396fd1

Please sign in to comment.