Skip to content

Commit

Permalink
Fix missing trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunicorn committed Oct 23, 2024
1 parent e320a67 commit f16f60a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/lib/features/home/widgets/my_events.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ class MyEventsSection extends ConsumerWidget {
}

Widget eventListUI(
BuildContext context, WidgetRef ref, List<CalendarEvent> events) {
BuildContext context,
WidgetRef ref,
List<CalendarEvent> events,
) {
final count = limit.map((val) => min(val, events.length)) ?? events.length;
return ListView.builder(
shrinkWrap: true,
Expand Down

0 comments on commit f16f60a

Please sign in to comment.