Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
redDwarf03 committed Jun 10, 2023
1 parent efce3fe commit c6db157
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/ui/views/intro/intro_import_seed.dart
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,9 @@ class _IntroImportSeedState extends ConsumerState<IntroImportSeedPage> {
);
final pastedWords = data?.text
?.split(RegExp('[^a-z]'))
.where((element) =>
element.isNotEmpty);
.where(
(element) => element.isNotEmpty,
);

if (pastedWords == null ||
pastedWords.length !=
Expand Down

0 comments on commit c6db157

Please sign in to comment.