diff --git a/lib/widgets/biz/amount_editor_sheet.dart b/lib/widgets/biz/amount_editor_sheet.dart index b734c97f..50c6e6ff 100644 --- a/lib/widgets/biz/amount_editor_sheet.dart +++ b/lib/widgets/biz/amount_editor_sheet.dart @@ -178,7 +178,6 @@ class _AmountEditorSheetState extends ConsumerState { final res = await showWheelDateTimePicker( context, initial: _date, - maxDate: DateTime.now(), ); if (res != null) setState(() => _date = res); } else { @@ -187,7 +186,6 @@ class _AmountEditorSheetState extends ConsumerState { context, initial: _date, mode: WheelDatePickerMode.ymd, - maxDate: DateTime.now(), ); if (res != null) setState(() => _date = res); }