unaired switch and alignment fix

This commit is contained in:
Ethan Pippin 2022-01-14 11:14:39 -07:00
parent 6a7ecebac5
commit fce8b8d624
2 changed files with 6 additions and 2 deletions

View File

@ -296,7 +296,7 @@ public extension BaseItemDto {
if let premierDate = premiereDate {
return premierDate > Date()
} else {
return true
return false
}
}

View File

@ -39,7 +39,11 @@ struct ParallaxHeaderScrollView<Header: View, StaticOverlayView: View, Content:
.offset(y: yOffset)
}
.frame(height: headerHeight)
content()
HStack {
content()
Spacer(minLength: 0)
}
}
}
}