diff --git a/apps/web/app/modules/Dashboard/Courses/CardCourseList.tsx b/apps/web/app/modules/Dashboard/Courses/CardCourseList.tsx
index 39881440..7711ab52 100644
--- a/apps/web/app/modules/Dashboard/Courses/CardCourseList.tsx
+++ b/apps/web/app/modules/Dashboard/Courses/CardCourseList.tsx
@@ -8,7 +8,7 @@ type CardCourseListProps = {
export const CardCourseList = ({ availableCourses }: CardCourseListProps) => {
return (
- <>
+
{availableCourses &&
availableCourses.map(
({
@@ -42,6 +42,6 @@ export const CardCourseList = ({ availableCourses }: CardCourseListProps) => {
return null;
},
)}
- >
+
);
};
diff --git a/apps/web/app/modules/Dashboard/Dashboard.page.tsx b/apps/web/app/modules/Dashboard/Dashboard.page.tsx
index d09a7590..1c9595e0 100644
--- a/apps/web/app/modules/Dashboard/Dashboard.page.tsx
+++ b/apps/web/app/modules/Dashboard/Dashboard.page.tsx
@@ -175,7 +175,7 @@ export default function DashboardPage() {
-