Bind tabs to client.id
This commit is contained in:
parent
498c2129fb
commit
363164d96d
|
@ -38,7 +38,7 @@ struct ExploreTab: View {
|
|||
routerPath.path = []
|
||||
}
|
||||
}
|
||||
.onChange(of: currentAccount.account?.id) { _ in
|
||||
.onChange(of: client.id) { _ in
|
||||
routerPath.path = []
|
||||
}
|
||||
.onAppear {
|
||||
|
|
|
@ -37,7 +37,7 @@ struct MessagesTab: View {
|
|||
routerPath.path = []
|
||||
}
|
||||
}
|
||||
.onChange(of: currentAccount.account?.id) { _ in
|
||||
.onChange(of: client.id) { _ in
|
||||
routerPath.path = []
|
||||
}
|
||||
.onAppear {
|
||||
|
|
|
@ -79,7 +79,7 @@ struct NotificationsTab: View {
|
|||
break
|
||||
}
|
||||
})
|
||||
.onChange(of: currentAccount.account?.id) { _ in
|
||||
.onChange(of: client.id) { _ in
|
||||
routerPath.path = []
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ struct ProfileTab: View {
|
|||
routerPath.path = []
|
||||
}
|
||||
}
|
||||
.onChange(of: currentAccount.account?.id) { _ in
|
||||
.onChange(of: client.id) { _ in
|
||||
routerPath.path = []
|
||||
}
|
||||
.onAppear {
|
||||
|
|
|
@ -81,7 +81,7 @@ struct TimelineTab: View {
|
|||
}
|
||||
}
|
||||
}
|
||||
.onChange(of: currentAccount.account?.id) { _ in
|
||||
.onChange(of: client.id) { _ in
|
||||
routerPath.path = []
|
||||
}
|
||||
.onChange(of: timeline) { timeline in
|
||||
|
|
Loading…
Reference in New Issue