Skip to content

Commit

Permalink
Fix exporting foods
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonp2412 committed Jul 12, 2024
1 parent edef6f2 commit db5619b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/settings/export_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class ExportData extends StatelessWidget {
food.favorite,
food.servingUnit,
food.servingSize,
food.created.toIso8601String(),
food.created?.toIso8601String() ?? "",
]);
}
final csv = const ListToCsvConverter(eol: '\n')
Expand Down

0 comments on commit db5619b

Please sign in to comment.