diff --git a/lib/ui/dialogs/new_survey_dialog.dart b/lib/ui/dialogs/new_survey_dialog.dart index 9a84835..9c746b9 100644 --- a/lib/ui/dialogs/new_survey_dialog.dart +++ b/lib/ui/dialogs/new_survey_dialog.dart @@ -131,7 +131,7 @@ class __SurveyDialogState extends State<_SurveyDialog> { if (_choiceController.text.length == 0) return; setState(() { _choices.add(_choiceController.text); - _choiceController.text = ""; + _choiceController.clear(); }); } }