Skip to content

Commit

Permalink
Switch order theme and description in lesson plan
Browse files Browse the repository at this point in the history
  • Loading branch information
aberonni committed Jan 22, 2024
1 parent be7c584 commit 975d5a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/LessonPlan.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ export function SingleLessonPlanComponent({
return (
<div>
<div className="space-y-2">
{lessonPlan.theme && (
<LessonPlanInfoBox title="Theme" description={lessonPlan.theme} />
)}
{lessonPlan.description && (
<LessonPlanInfoBox
title="Description"
description={lessonPlan.description}
/>
)}
{lessonPlan.theme && (
<LessonPlanInfoBox title="Theme" description={lessonPlan.theme} />
)}
<LessonPlanDuration lessonPlan={lessonPlan} />
</div>
{lessonPlan.sections.map((section, index) => (
Expand Down

0 comments on commit 975d5a3

Please sign in to comment.