Skip to content

Commit

Permalink
routing error gefikst
Browse files Browse the repository at this point in the history
  • Loading branch information
Bendemeurichy committed May 20, 2024
1 parent 6d1bc6b commit be1f261
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions frontend/frontend/src/components/CourseCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -369,10 +369,8 @@ export function CourseCard({
{assignments.map(
(assignment) => (
<AssignmentListItem
key={
assignment.project_id
}
id={`project${assignment.project_id}`}
key={`project${assignment.project_id}`}
id={assignment.project_id.toString()}
courseId={
courseId
}
Expand Down Expand Up @@ -415,10 +413,8 @@ export function CourseCard({
)
.map((assignment) => (
<AssignmentListItem
key={
assignment.project_id
}
id={`project${assignment.project_id}`}
key={`project${assignment.project_id}`}
id={assignment.project_id.toString()}
courseId={
courseId
}
Expand Down

0 comments on commit be1f261

Please sign in to comment.