From 5c645904d0a2fdeeee831f566b0f323940ce984f Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Wed, 18 Feb 2026 13:18:08 -0500 Subject: [PATCH] chore: Move module location above module summary (#5746) --- .../course_creation/public_course_preview_view.dart | 12 ++++++------ lib/pangea/course_creation/selected_course_view.dart | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/pangea/course_creation/public_course_preview_view.dart b/lib/pangea/course_creation/public_course_preview_view.dart index f9d991ee6..b8612a072 100644 --- a/lib/pangea/course_creation/public_course_preview_view.dart +++ b/lib/pangea/course_creation/public_course_preview_view.dart @@ -199,12 +199,6 @@ class PublicCoursePreviewView extends StatelessWidget { fontSize: titleFontSize, ), ), - Text( - topic.description, - style: const TextStyle( - fontSize: descFontSize, - ), - ), Padding( padding: const EdgeInsetsGeometry.symmetric( @@ -224,6 +218,12 @@ class PublicCoursePreviewView extends StatelessWidget { ], ), ), + Text( + topic.description, + style: const TextStyle( + fontSize: descFontSize, + ), + ), ], ), ), diff --git a/lib/pangea/course_creation/selected_course_view.dart b/lib/pangea/course_creation/selected_course_view.dart index 12159cf9a..2431f13f5 100644 --- a/lib/pangea/course_creation/selected_course_view.dart +++ b/lib/pangea/course_creation/selected_course_view.dart @@ -166,12 +166,6 @@ class SelectedCourseView extends StatelessWidget { fontSize: titleFontSize, ), ), - Text( - topic.description, - style: const TextStyle( - fontSize: descFontSize, - ), - ), Padding( padding: const EdgeInsetsGeometry.symmetric( @@ -191,6 +185,12 @@ class SelectedCourseView extends StatelessWidget { ], ), ), + Text( + topic.description, + style: const TextStyle( + fontSize: descFontSize, + ), + ), ], ), ),