[tvOS] Fix fresh tomato being shown for all rating values (#1421)

This commit is contained in:
samglt 2025-02-06 18:35:58 -08:00 committed by GitHub
parent 3ee2abec5c
commit 98e4ae9917
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -23,9 +23,9 @@ extension ItemView.AboutView {
VStack {
Group {
if criticRating >= 60 {
Image("tomato.fresh")
Image(.tomatoFresh)
} else {
Image("tomato.fresh")
Image(.tomatoRotten)
}
}
.symbolRenderingMode(.multicolor)