mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-04-28 10:54:43 +00:00
Fix #1585
This commit is contained in:
parent
cc32845134
commit
7efd8ed7cb
2 changed files with 29 additions and 25 deletions
|
@ -115,7 +115,6 @@ struct IceCubesApp: App {
|
|||
popToRootTab: $popToRootTab,
|
||||
tabs: availableTabs)
|
||||
{
|
||||
GeometryReader { _ in
|
||||
HStack(spacing: 0) {
|
||||
ZStack {
|
||||
if selectedTab == .profile {
|
||||
|
@ -143,7 +142,6 @@ struct IceCubesApp: App {
|
|||
notificationsSecondaryColumn
|
||||
}
|
||||
}
|
||||
}
|
||||
}.onChange(of: $appAccountsManager.currentAccount.id) {
|
||||
sideBarLoadedTabs.removeAll()
|
||||
}
|
||||
|
|
|
@ -95,6 +95,12 @@ struct TimelineTab: View {
|
|||
if client.isAuth, newValue == .home || newValue == .federated || newValue == .local {
|
||||
lastTimelineFilter = newValue
|
||||
}
|
||||
switch newValue {
|
||||
case .tagGroup:
|
||||
break
|
||||
default:
|
||||
selectedTagGroup = nil
|
||||
}
|
||||
}
|
||||
.withSafariRouter()
|
||||
.environment(routerPath)
|
||||
|
|
Loading…
Reference in a new issue