Various fixes

This commit is contained in:
Thomas Ricouard 2023-01-19 08:41:45 +01:00
parent 987a655227
commit 7506c33482
2 changed files with 35 additions and 35 deletions

View File

@ -30,7 +30,6 @@ struct AccountDetailHeaderView: View {
}
private var headerImageView: some View {
GeometryReader { _ in
ZStack(alignment: .bottomTrailing) {
if reasons.contains(.placeholder) {
Rectangle()
@ -65,7 +64,6 @@ struct AccountDetailHeaderView: View {
}
}
.background(Color.gray)
}
.frame(height: bannerHeight)
.offset(y: scrollOffset > 0 ? -scrollOffset : 0)
.contentShape(Rectangle())

View File

@ -31,12 +31,14 @@ class NotificationsViewModel: ObservableObject {
@Published var state: State = .loading
@Published var selectedType: Models.Notification.NotificationType? {
didSet {
if oldValue != selectedType {
notifications = []
Task {
await fetchNotifications()
}
}
}
}
private var queryTypes: [String]? {
if let selectedType {