This commit is contained in:
Thomas Ricouard 2023-09-25 14:12:35 +02:00
parent fd1ec73773
commit e0663bf177

View file

@ -37,7 +37,7 @@ struct TimelineTab: View {
init(popToRootTab: Binding<Tab>, timeline: TimelineFilter? = nil) {
canFilterTimeline = timeline == nil
_popToRootTab = popToRootTab
self.timeline = timeline ?? .home
_timeline = .init(initialValue: timeline ?? .home)
}
var body: some View {