Bind tabs to client.id

This commit is contained in:
Thomas Ricouard 2023-02-14 14:27:29 +01:00
parent 498c2129fb
commit 363164d96d
5 changed files with 5 additions and 5 deletions

View file

@ -38,7 +38,7 @@ struct ExploreTab: View {
routerPath.path = []
}
}
.onChange(of: currentAccount.account?.id) { _ in
.onChange(of: client.id) { _ in
routerPath.path = []
}
.onAppear {

View file

@ -37,7 +37,7 @@ struct MessagesTab: View {
routerPath.path = []
}
}
.onChange(of: currentAccount.account?.id) { _ in
.onChange(of: client.id) { _ in
routerPath.path = []
}
.onAppear {

View file

@ -79,7 +79,7 @@ struct NotificationsTab: View {
break
}
})
.onChange(of: currentAccount.account?.id) { _ in
.onChange(of: client.id) { _ in
routerPath.path = []
}
}

View file

@ -34,7 +34,7 @@ struct ProfileTab: View {
routerPath.path = []
}
}
.onChange(of: currentAccount.account?.id) { _ in
.onChange(of: client.id) { _ in
routerPath.path = []
}
.onAppear {

View file

@ -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