From 104a52d59db88570078bb063920e6bfbcec0bd5f Mon Sep 17 00:00:00 2001 From: Tomas Gonzalez Date: Mon, 16 Dec 2024 17:09:26 -0400 Subject: [PATCH] Students enrolled translation bug --- src/pages/bootcamp/[course_slug].jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/bootcamp/[course_slug].jsx b/src/pages/bootcamp/[course_slug].jsx index fa29ca865..cb666b5c1 100644 --- a/src/pages/bootcamp/[course_slug].jsx +++ b/src/pages/bootcamp/[course_slug].jsx @@ -632,7 +632,7 @@ function CoursePage({ data }) { : ( - {students.length > limitViewStudents ? getAlternativeTranslation('students-enrolled-count', { count: students.length - limitViewStudents }) : ''} + {students.length > limitViewStudents ? t('students-enrolled-count', { count: students.length - limitViewStudents }) : ''} )}