Skip to content

Commit

Permalink
Merge pull request #1744 from tommygonzaleza/main
Browse files Browse the repository at this point in the history
Students enrolled translation bug
  • Loading branch information
tommygonzaleza authored Dec 16, 2024
2 parents d399194 + 104a52d commit c8a9fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/bootcamp/[course_slug].jsx
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ function CoursePage({ data }) {
: (

<Text size="16px" color="currentColor" fontWeight={400}>
{students.length > limitViewStudents ? getAlternativeTranslation('students-enrolled-count', { count: students.length - limitViewStudents }) : ''}
{students.length > limitViewStudents ? t('students-enrolled-count', { count: students.length - limitViewStudents }) : ''}
</Text>
)}
</Flex>
Expand Down

0 comments on commit c8a9fdf

Please sign in to comment.