Skip to content

Commit ec3533e

Browse files
mikebarkminCopilot
andcommitted
fix(lessons): show all notes instead of capping at 5
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b0e3297 commit ec3533e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/features/lessons/lesson_sections.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class LessonNotesCard extends StatelessWidget {
8484
@override
8585
Widget build(BuildContext context) {
8686
final studentsById = {for (final student in students) student.id: student};
87-
final displayedNotes = notes.take(5).toList(growable: false);
87+
final displayedNotes = notes;
8888

8989
return Card(
9090
child: Padding(

0 commit comments

Comments
 (0)