Skip to content

Commit

Permalink
Fix rating number for series vote again (#987)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithmohan authored Aug 18, 2024
1 parent 7cfa834 commit 3f035aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Collection/Series/SeriesRating.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
/>
Expand Down

0 comments on commit 3f035aa

Please sign in to comment.