Skip to content

Commit

Permalink
Merge pull request #1893 from lumi-tip/development-lumi-8473
Browse files Browse the repository at this point in the history
adding reading ex, etc
  • Loading branch information
tommygonzaleza authored Feb 26, 2025
2 parents b92b291 + f741a67 commit 877730c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pages/bootcamp/[course_slug].jsx
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,11 @@ function CoursePage({ data, syllabus }) {

const courseContentList = data?.course_translation?.course_modules?.length > 0
? data?.course_translation?.course_modules.map((module) => ({
certificate: module.certificate,
time: module.time,
exercises: module.exercises,
projects: module.projects,
readings: module.readings,
title: module.name,
description: module.description,
})) : [];
Expand Down

0 comments on commit 877730c

Please sign in to comment.