Skip to content

Commit

Permalink
fix type error mixpanel
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmohsin7 committed Nov 15, 2024
1 parent bfccda6 commit 39683fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/lib/pages/apps/add_app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -215,13 +215,13 @@ class _AddAppPageState extends State<AddAppPage> {
MixpanelManager().publicAppSubmitted({
'app_name': provider.appNameController.text,
'app_category': provider.appCategory,
'app_capabilities': provider.capabilities,
'app_capabilities': provider.capabilities.map((e) => e.id).toList(),
});
} else {
MixpanelManager().privateAppSubmitted({
'app_name': provider.appNameController.text,
'app_category': provider.appCategory,
'app_capabilities': provider.capabilities,
'app_capabilities': provider.capabilities.map((e) => e.id).toList(),
});
}
SharedPreferencesUtil().showSubmitAppConfirmation = showSubmitAppConfirmation;
Expand Down

0 comments on commit 39683fc

Please sign in to comment.