diff --git a/damus/Views/Notifications/EventGroupView.swift b/damus/Views/Notifications/EventGroupView.swift index 9aa583bc..2fccb285 100644 --- a/damus/Views/Notifications/EventGroupView.swift +++ b/damus/Views/Notifications/EventGroupView.swift @@ -210,7 +210,7 @@ struct EventGroupView: View { let thread = ThreadModel(event: event, damus_state: state) let dest = ThreadView(state: state, thread: thread) NavigationLink(destination: dest) { - Text(event.content) + Text(render_note_content(ev: event, profiles: state.profiles, privkey: state.keypair.privkey).content) .padding([.top], 1) .foregroundColor(.gray) }