From 8fe86115270c28beb8f360cb0314f36ae44f739c Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 3 Apr 2023 15:43:14 -0700 Subject: [PATCH] Add missing padding on notifications view --- damus/Views/Notifications/EventGroupView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/damus/Views/Notifications/EventGroupView.swift b/damus/Views/Notifications/EventGroupView.swift index 11da278f..9874fb56 100644 --- a/damus/Views/Notifications/EventGroupView.swift +++ b/damus/Views/Notifications/EventGroupView.swift @@ -214,6 +214,7 @@ struct EventGroupView: View { GroupDescription EventBody(damus_state: state, event: event, size: .normal, options: []) .padding([.top], 1) + .padding([.trailing]) .foregroundColor(.gray) } }