Skip to content

Commit

Permalink
表示名のエラー表示の修正
Browse files Browse the repository at this point in the history
  • Loading branch information
narumincho committed Jun 12, 2024
1 parent 75237ed commit 3a419a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/widget/input_account_code_and_display_name.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ class _InputAccountCodeAndDisplayNameState
counterText:
'${displayName?.value.length ?? _displayNameController.text.trim().length}',
error: displayName == null
? null
: const Text('1文字以上64文字以内である必要があります'),
? const Text('1文字以上64文字以内である必要があります')
: null,
),
),
const SizedBox(height: 16),
Expand Down

0 comments on commit 3a419a6

Please sign in to comment.