Skip to content

Commit 0ad0f1d

Browse files
committed
Run prettier
1 parent 1c772d9 commit 0ad0f1d

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

app/courses/[courseId]/progress/page.tsx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,9 @@ export default function LearningProgress() {
397397
competencyName={category}
398398
startProgress={Math.floor(previousCategoryProgressValue)}
399399
endProgress={Math.floor(categoryProgressValue)}
400-
averageProgress={/*Math.floor(categoryAverageProgressValue)*/0}
400+
averageProgress={
401+
/*Math.floor(categoryAverageProgressValue)*/ 0
402+
}
401403
color={stringToColor(category)}
402404
onClick={() => {
403405
setSelectedCategory(
@@ -409,7 +411,7 @@ export default function LearningProgress() {
409411
isSelected={category === sortedCategories[selectedCategory]}
410412
isUrgent={urgent}
411413
showAverageProgress={showAverageProgress}
412-
participantCount={/*maxParticipantCountForaSkill*/0}
414+
participantCount={/*maxParticipantCountForaSkill*/ 0}
413415
courseMemberCount={course.numberOfCourseMemberships}
414416
openTaskCount={
415417
filteredSuggestionsByCategory(category).length
@@ -509,7 +511,9 @@ export default function LearningProgress() {
509511
small={true}
510512
startProgress={Math.floor(previousSkillProgressValue)}
511513
endProgress={Math.floor(skillProgressValue)}
512-
averageProgress={/*Math.floor(skillAverageProgressValue)*/0}
514+
averageProgress={
515+
/*Math.floor(skillAverageProgressValue)*/ 0
516+
}
513517
color={stringToColor(currentSkill.skillCategory)}
514518
onClick={() => {
515519
const currentIndex = currentUniqueSkills.findIndex(
@@ -527,7 +531,7 @@ export default function LearningProgress() {
527531
}
528532
isUrgent={urgent}
529533
showAverageProgress={showAverageProgress}
530-
participantCount={/*maxParticipantCount*/0}
534+
participantCount={/*maxParticipantCount*/ 0}
531535
courseMemberCount={course.numberOfCourseMemberships}
532536
openTaskCount={
533537
filteredSuggestionsBySkill(currentSkill.skillName).length
@@ -638,4 +642,4 @@ export default function LearningProgress() {
638642
</div>
639643
</div>
640644
);
641-
}
645+
}

0 commit comments

Comments
 (0)