From 0584739c142104d15c45aeb96513b04fb735bfe2 Mon Sep 17 00:00:00 2001 From: Alessandro Liparoti Date: Mon, 6 Nov 2023 10:01:23 +0100 Subject: [PATCH] repeat for max 4 weeks --- lib/screens/CreateMatch.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/CreateMatch.dart b/lib/screens/CreateMatch.dart index 936d867..4aec773 100644 --- a/lib/screens/CreateMatch.dart +++ b/lib/screens/CreateMatch.dart @@ -345,7 +345,7 @@ class CreateMatchState extends State { AppLocalizations.of(context)!.repeatInputLabel, isDropdown: true), onTap: () async { - var weeks = [1, 2, 4, 6, 8, 10]; + var weeks = [1, 2, 3, 4]; var choices = weeks.map((e) { if (e == 1) return noRepeat;