MediaRow removes client parameter
This commit is contained in:
parent
974fd8b06c
commit
96d776889c
1 changed files with 1 additions and 2 deletions
|
|
@ -6,7 +6,6 @@ struct MediaRow: View {
|
|||
|
||||
var title: String
|
||||
var items: [Components.Schemas.BaseItemDto]
|
||||
var client: JellyfinClient
|
||||
var onSeeAll: (() -> Void)?
|
||||
|
||||
var view: Body {
|
||||
|
|
@ -23,7 +22,7 @@ struct MediaRow: View {
|
|||
}
|
||||
ScrollView {
|
||||
ForEach(items, horizontal: true) { item in
|
||||
HomePosterCell(item: item, client: client)
|
||||
HomePosterCell(item: item)
|
||||
.padding(16, .trailing)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue