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, + ), + ), ], ), ),