From 3f035aacd99e4de64804a8d3bac162f066ea2e74 Mon Sep 17 00:00:00 2001 From: Harshith Mohan <26010946+harshithmohan@users.noreply.github.com> Date: Sun, 18 Aug 2024 16:32:38 +0530 Subject: [PATCH] Fix rating number for series vote again (#987) --- src/components/Collection/Series/SeriesRating.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Collection/Series/SeriesRating.tsx b/src/components/Collection/Series/SeriesRating.tsx index fda0c0322..8621963a5 100644 --- a/src/components/Collection/Series/SeriesRating.tsx +++ b/src/components/Collection/Series/SeriesRating.tsx @@ -57,7 +57,7 @@ const SeriesRating = ({ ratingValue, seriesId }: Props) => { // eslint-disable-next-line react/no-array-index-key key={`star-${index}`} index={index.toString()} - hovered={hoveredStar >= index} + hovered={hoveredStar > index} handleHover={handleHover} handleVote={handleVote} />