Revert "New Timeline"

This reverts commit f84d4516db.
This commit is contained in:
William Casarin
2023-03-25 06:31:24 -06:00
parent 57006b928b
commit f5ed9cd5d4
15 changed files with 92 additions and 253 deletions

View File

@@ -37,7 +37,7 @@ struct InnerTimelineView: View {
EmptyTimelineView()
} else {
ForEach(events.filter(filter), id: \.id) { (ev: NostrEvent) in
EventView(damus: damus, event: ev, options: [.wide])
EventView(damus: damus, event: ev)
.onTapGesture {
nav_target = ev.inner_event ?? ev
navigating = true
@@ -49,7 +49,7 @@ struct InnerTimelineView: View {
}
}
}
//.padding(.horizontal)
.padding(.horizontal)
}
}