From 49b9be160f613b8fdfe59c17522d92b207de298a Mon Sep 17 00:00:00 2001 From: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> Date: Sun, 19 Feb 2023 07:57:29 -0800 Subject: [PATCH] AppRowView: Disable ratings if there aren't any ratings --- AltStore/View Components/AppRowView.swift | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/AltStore/View Components/AppRowView.swift b/AltStore/View Components/AppRowView.swift index 1ccf8791..d49929eb 100644 --- a/AltStore/View Components/AppRowView.swift +++ b/AltStore/View Components/AppRowView.swift @@ -30,9 +30,11 @@ struct AppRowView: View { .font(.callout) .foregroundColor(.secondary) - RatingStars(rating: 4) - .frame(height: 12) - .foregroundColor(.secondary) + if false { + RatingStars(rating: 4) + .frame(height: 12) + .foregroundColor(.secondary) + } } .lineLimit(1)