Skip to content

Commit

Permalink
NetWorth chart: logic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dreautall authored Oct 4, 2023
1 parent 31eb991 commit a594b50
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/pages/home/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,6 @@ class _HomeMainState extends State<HomeMain>
date.day == now.day) ||
// Other month: take last day of month
(date.month != now.month &&
date.year != now.year &&
date.copyWith(day: date.day + 1).month != date.month)) {
final double value = double.tryParse(valueStr) ?? 0;
// We don't really care about the exact date. Always using the first
Expand Down

0 comments on commit a594b50

Please sign in to comment.