diff --git a/damus/Views/EventDetailView.swift b/damus/Views/EventDetailView.swift index 128108d2..1d8c3dc7 100644 --- a/damus/Views/EventDetailView.swift +++ b/damus/Views/EventDetailView.swift @@ -91,13 +91,16 @@ struct EventDetailView: View { var body: some View { ScrollView { ForEach(events, id: \.id) { ev in - let evdet = EventDetailView(event: ev, pool: pool, profiles: profiles) - .navigationBarTitle("Note") - NavigationLink(destination: evdet) { + if ev.id == event.id { EventView(event: ev, profile: self.profiles[ev.pubkey]?.profile, highlighted: ev.id == event.id) + } else { + let evdet = EventDetailView(event: ev, pool: pool, profiles: profiles) + .navigationBarTitle("Note") + NavigationLink(destination: evdet) { + EventView(event: ev, profile: self.profiles[ev.pubkey]?.profile, highlighted: ev.id == event.id) + } + .buttonStyle(PlainButtonStyle()) } - .buttonStyle(PlainButtonStyle()) - //EventView(event: ev, profile: self.profiles[ev.pubkey]?.profile, highlighted: ev.id == event.id) } } .padding()