diff --git a/src/components/Lesson/index.tsx b/src/components/Lesson/index.tsx index b51d6eb59..344a8e8df 100644 --- a/src/components/Lesson/index.tsx +++ b/src/components/Lesson/index.tsx @@ -21,8 +21,8 @@ const Lesson: React.FC = ({ title, tags, description }) => {

{title}

{/* Title of the lesson */}

{description}

{/* Description or content of the lesson */}
{/* Container for tags */} - {tags.map((tag, index) => ( - {tag} + {tags.map((tag) => ( + {tag} )) }