Skip to content

Commit 334c72f

Browse files
committed
💚 Fix trailing commas
1 parent 61d54ac commit 334c72f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example/lib/pages/home_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class _MyHomePageState extends State<HomePage> {
115115
onRemoveAsset: () => selectedAsset.value = null,
116116
);
117117
},
118-
)
118+
),
119119
],
120120
),
121121
),

example/lib/widgets/selected_assets_view.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class SelectedAssetView extends StatelessWidget {
7777
child: child!,
7878
),
7979
child: _selectedAssetDeleteButton(context),
80-
)
80+
),
8181
],
8282
),
8383
),

0 commit comments

Comments
 (0)