Skip to content

Commit

Permalink
HomeMain: remove debugPrint statements
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
dreautall committed Sep 12, 2023
1 parent 402a5a8 commit 1c91522
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 @@ -113,7 +113,6 @@ class _HomeMainState extends State<HomeMain>
.toLocal()
.setTimeOfDay(const TimeOfDay(hour: 12, minute: 0));
final double value = double.tryParse(valueStr) ?? 0;
debugPrint("[${e.label}] $date: $value");
if (e.label == "earned") {
lastDaysIncome[date] = (lastDaysIncome[date] ?? 0) + value;
} else if (e.label == "spent") {
Expand Down

0 comments on commit 1c91522

Please sign in to comment.