Skip to content

Commit

Permalink
refactor: fix more problem with analyser
Browse files Browse the repository at this point in the history
Missing trailing comma in app_selector_view
  • Loading branch information
validcube committed Jul 7, 2023
1 parent 7c2c695 commit e83e13b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/ui/views/app_selector/app_selector_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ class _AppSelectorViewState extends State<AppSelectorView> {
),
installedVersion: app.versionName!,
onTap: () => model.canSelectInstalled(
context, app.packageName),
context,
app.packageName,
),
),
)
.toList(),
Expand Down

0 comments on commit e83e13b

Please sign in to comment.