diff --git a/damus/Components/Status/UserStatusView.swift b/damus/Components/Status/UserStatusView.swift index 8f765dae..d3d1d367 100644 --- a/damus/Components/Status/UserStatusView.swift +++ b/damus/Components/Status/UserStatusView.swift @@ -13,15 +13,17 @@ struct UserStatusView: View { @ObservedObject var status: UserStatusModel var body: some View { - VStack(alignment: .leading, spacing: 0) { + VStack(alignment: .leading, spacing: 2) { if let general = status.general { Text(verbatim: "\(general.content)") + .lineLimit(1) .foregroundColor(.gray) .font(.callout.italic()) } if let playing = status.music { Text(verbatim: "🎵\(playing.content)") + .lineLimit(1) .foregroundColor(.gray) .font(.callout.italic()) }