Skip to content

Commit

Permalink
tmp: test for analyze
Browse files Browse the repository at this point in the history
  • Loading branch information
warahiko committed Dec 27, 2023
1 parent f00962f commit 881b467
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/app/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class MainApp extends ConsumerWidget {
),
),
error: (error, _) => Text(error.toString()),
loading: CircularProgressIndicator.new,
loading: CircularProgressIndicator.new
),

Check notice on line 32 in apps/app/lib/main.dart

View workflow job for this annotation

GitHub Actions / check

Missing a required trailing comma.

See https://dart.dev/lints/require_trailing_commas to learn more about this problem.
),
),
Expand Down
2 changes: 1 addition & 1 deletion apps/catalog/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class MainApp extends StatelessWidget {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
child: Text('Hello World!')
),

Check notice on line 16 in apps/catalog/lib/main.dart

View workflow job for this annotation

GitHub Actions / check

Missing a required trailing comma.

See https://dart.dev/lints/require_trailing_commas to learn more about this problem.
),
);
Expand Down

0 comments on commit 881b467

Please sign in to comment.