Skip to content

Commit

Permalink
Fix #1590
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimillian committed Sep 25, 2023
1 parent fd1ec73 commit e0663bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IceCubesApp/App/Tabs/Timeline/TimelineTab.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e0663bf

Please sign in to comment.