diff --git a/lib/presentation/widgets/player_selection.dart b/lib/presentation/widgets/player_selection.dart index 2e42d80..1c5120f 100644 --- a/lib/presentation/widgets/player_selection.dart +++ b/lib/presentation/widgets/player_selection.dart @@ -10,14 +10,9 @@ import 'package:provider/provider.dart'; import 'package:skeletonizer/skeletonizer.dart'; class PlayerSelection extends StatefulWidget { - final TextEditingController controller; final Function(List value) onChanged; - const PlayerSelection({ - super.key, - required this.controller, - required this.onChanged, - }); + const PlayerSelection({super.key, required this.onChanged}); @override State createState() => _PlayerSelectionState();