Skip to content

Commit

Permalink
chore: fix minor formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Merrit committed Aug 20, 2024
1 parent b55961c commit 3bf607c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/core/widgets/input_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class InputDialog extends StatelessWidget {
this.keyboardType,
this.formatter,
required String initialValue,
}) : maxLines = (type == InputDialogs.multiLine) ? 5 : 1 {
}) : maxLines = (type == InputDialogs.multiLine) ? 5 : 1 {
controller.text = initialValue;
controller.selection = TextSelection(
baseOffset: 0,
Expand Down

0 comments on commit 3bf607c

Please sign in to comment.