Fix precision when displaying reviews

This commit is contained in:
powermaker450 2024-09-13 00:43:26 +00:00
parent 8491fb7096
commit f26d7c08e3

View file

@ -77,7 +77,11 @@ function ShowReviews({ reviews }: ShowReviewsProps) {
{review.content}
</Typography>
<Rating value={review.rating} readOnly />
<Rating
value={review.rating}
readOnly
precision={0.5}
/>
</>
}
/>