Fix placeholder cells

This commit is contained in:
Arkadiusz Fal
2022-12-11 17:19:21 +01:00
parent 899e66b204
commit 33bd052fdc
2 changed files with 5 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import SwiftUI
struct PlaceholderCell: View {
var body: some View {
VideoCell(video: .fixture)
VideoCell(id: UUID().uuidString, video: .fixture)
.redacted(reason: .placeholder)
}
}