chore: Move module location above module summary (#5746)

This commit is contained in:
ggurdin 2026-02-18 13:18:08 -05:00 committed by GitHub
parent 06c2047f77
commit 5c645904d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 12 deletions

View file

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

View file

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