Overview
The useMemo at src/components/courses/CourseReviews.tsx (lines 69-80) maps reviews through getHelpfulCount but omits it from the deps with an eslint-disable (line 78), so 'most helpful' sorting can use stale helpful counts after a vote until another control changes. Include getHelpfulCount (stabilized) in the deps.
Overview
The useMemo at src/components/courses/CourseReviews.tsx (lines 69-80) maps reviews through getHelpfulCount but omits it from the deps with an eslint-disable (line 78), so 'most helpful' sorting can use stale helpful counts after a vote until another control changes. Include getHelpfulCount (stabilized) in the deps.