From 3bf607ca0fc7918f62776f18c0664de3e5f82bff Mon Sep 17 00:00:00 2001 From: Kristen McWilliam <9575627+Merrit@users.noreply.github.com> Date: Tue, 20 Aug 2024 12:12:08 -0400 Subject: [PATCH] chore: fix minor formatting issue --- lib/src/core/widgets/input_dialog.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/core/widgets/input_dialog.dart b/lib/src/core/widgets/input_dialog.dart index 8b12d7e..1e9f6d9 100644 --- a/lib/src/core/widgets/input_dialog.dart +++ b/lib/src/core/widgets/input_dialog.dart @@ -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,